mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-19 03:54:28 +08:00
27 lines
672 B
TypeScript
27 lines
672 B
TypeScript
|
import React from 'react';
|
||
|
import { Button, Popconfirm } from 'antd';
|
||
|
|
||
|
const style: React.CSSProperties = {
|
||
|
width: '300vw',
|
||
|
height: '300vh',
|
||
|
display: 'flex',
|
||
|
alignItems: 'center',
|
||
|
justifyContent: 'center',
|
||
|
};
|
||
|
|
||
|
const App: React.FC = () => {
|
||
|
React.useEffect(() => {
|
||
|
document.documentElement.scrollTop = document.documentElement.clientHeight;
|
||
|
document.documentElement.scrollLeft = document.documentElement.clientWidth;
|
||
|
}, []);
|
||
|
return (
|
||
|
<div style={style}>
|
||
|
<Popconfirm title="Thanks for using antd. Have a nice day !" open>
|
||
|
<Button type="primary">Scroll The Window</Button>
|
||
|
</Popconfirm>
|
||
|
</div>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default App;
|