ant-design/components/affix/demo/target.tsx
二货爱吃白萝卜 c65627f041
docs: clean up useless demo style (#49349)
* chore: clean up demo

* test: update snapshot
2024-06-11 16:59:23 +08:00

30 lines
659 B
TypeScript

import React from 'react';
import { Affix, Button } from 'antd';
const containerStyle: React.CSSProperties = {
width: '100%',
height: 100,
overflow: 'auto',
boxShadow: '0 0 0 1px #40a9ff',
};
const style: React.CSSProperties = {
width: '100%',
height: 1000,
};
const App: React.FC = () => {
const [container, setContainer] = React.useState<HTMLDivElement | null>(null);
return (
<div style={containerStyle} ref={setContainer}>
<div style={style}>
<Affix target={() => container}>
<Button type="primary">Fixed at the top of container</Button>
</Affix>
</div>
</div>
);
};
export default App;