| 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; | |