mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-27 20:49:53 +08:00
502dac12aa
* docs: fix code * feat: lint * feat: prettier * feat: test * feat: review * feat: format html * feat: format html
29 lines
496 B
TypeScript
29 lines
496 B
TypeScript
import React from 'react';
|
|
import { HomeOutlined, UserOutlined } from '@ant-design/icons';
|
|
import { Breadcrumb } from 'antd';
|
|
|
|
const App: React.FC = () => (
|
|
<Breadcrumb
|
|
items={[
|
|
{
|
|
href: '',
|
|
title: <HomeOutlined />,
|
|
},
|
|
{
|
|
href: '',
|
|
title: (
|
|
<>
|
|
<UserOutlined />
|
|
<span>Application List</span>
|
|
</>
|
|
),
|
|
},
|
|
{
|
|
title: 'Application',
|
|
},
|
|
]}
|
|
/>
|
|
);
|
|
|
|
export default App;
|