mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-05 01:19:45 +08:00
35 lines
1.1 KiB
TypeScript
35 lines
1.1 KiB
TypeScript
import React from 'react';
|
|
import { Breadcrumb, Layout, Menu } from 'antd';
|
|
|
|
const { Header, Content, Footer } = Layout;
|
|
|
|
const App: React.FC = () => (
|
|
<Layout>
|
|
<Header style={{ position: 'sticky', top: 0, zIndex: 1, width: '100%' }}>
|
|
<div className="logo" />
|
|
<Menu
|
|
theme="dark"
|
|
mode="horizontal"
|
|
defaultSelectedKeys={['2']}
|
|
items={new Array(3).fill(null).map((_, index) => ({
|
|
key: String(index + 1),
|
|
label: `nav ${index + 1}`,
|
|
}))}
|
|
/>
|
|
</Header>
|
|
<Content className="site-layout" style={{ padding: '0 50px', marginTop: 64 }}>
|
|
<Breadcrumb style={{ margin: '16px 0' }}>
|
|
<Breadcrumb.Item>Home</Breadcrumb.Item>
|
|
<Breadcrumb.Item>List</Breadcrumb.Item>
|
|
<Breadcrumb.Item>App</Breadcrumb.Item>
|
|
</Breadcrumb>
|
|
<div className="site-layout-background" style={{ padding: 24, minHeight: 380 }}>
|
|
Content
|
|
</div>
|
|
</Content>
|
|
<Footer style={{ textAlign: 'center' }}>Ant Design ©2018 Created by Ant UED</Footer>
|
|
</Layout>
|
|
);
|
|
|
|
export default App;
|