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