import React from 'react'; import { Affix, Button } from 'antd'; const containerStyle: React.CSSProperties = { width: '100%', height: 100, overflow: 'auto', border: '1px solid #40a9ff', }; const style: React.CSSProperties = { width: '100%', height: 1000, }; const App: React.FC = () => { const [container, setContainer] = React.useState(null); return (
container}>
); }; export default App;