mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 02:59:58 +08:00
62 lines
1.5 KiB
TypeScript
62 lines
1.5 KiB
TypeScript
import React from 'react';
|
|
import { Breadcrumb, Layout, Menu, theme } from 'antd';
|
|
|
|
const { Header, Content, Footer } = Layout;
|
|
|
|
const items = new Array(3).fill(null).map((_, index) => ({
|
|
key: String(index + 1),
|
|
label: `nav ${index + 1}`,
|
|
}));
|
|
|
|
const App: React.FC = () => {
|
|
const {
|
|
token: { colorBgContainer, borderRadiusLG },
|
|
} = theme.useToken();
|
|
|
|
return (
|
|
<Layout>
|
|
<Header
|
|
style={{
|
|
position: 'sticky',
|
|
top: 0,
|
|
zIndex: 1,
|
|
width: '100%',
|
|
display: 'flex',
|
|
alignItems: 'center',
|
|
}}
|
|
>
|
|
<div className="demo-logo" />
|
|
<Menu
|
|
theme="dark"
|
|
mode="horizontal"
|
|
defaultSelectedKeys={['2']}
|
|
items={items}
|
|
style={{ flex: 1, minWidth: 0 }}
|
|
/>
|
|
</Header>
|
|
<Content style={{ padding: '0 48px' }}>
|
|
<Breadcrumb style={{ margin: '16px 0' }}>
|
|
<Breadcrumb.Item>Home</Breadcrumb.Item>
|
|
<Breadcrumb.Item>List</Breadcrumb.Item>
|
|
<Breadcrumb.Item>App</Breadcrumb.Item>
|
|
</Breadcrumb>
|
|
<div
|
|
style={{
|
|
padding: 24,
|
|
minHeight: 380,
|
|
background: colorBgContainer,
|
|
borderRadius: borderRadiusLG,
|
|
}}
|
|
>
|
|
Content
|
|
</div>
|
|
</Content>
|
|
<Footer style={{ textAlign: 'center' }}>
|
|
Ant Design ©{new Date().getFullYear()} Created by Ant UED
|
|
</Footer>
|
|
</Layout>
|
|
);
|
|
};
|
|
|
|
export default App;
|