mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 00:09:39 +08:00
a55195f25b
* demo: update demo * fix: fix * fix: fix * fix: fix
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;
|