mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-13 07:39:10 +08:00
413e44a170
* feat: breadCrumb support items * feat: update snap * feat: 删除部分不支持的test case * feat: update snap * feat: update snap * feat: update snap * feat: update ts * feat: update ts * feat: update ts * feat: update for reviewer * doc: update for doc * doc: update for doc * doc: replace breadcrumbName to title * doc: replace breadcrumbName to title * doc: replace breadcrumbName to title * chore: adjust separator logic * refactor: use items * chore: update logic * chore: fix routes logic * chore: fix logic * chore: clean up * chore: adjust warning info * doc: edit test case * feat: update snap --------- Co-authored-by: 二货机器人 <smith3816@gmail.com>
29 lines
496 B
TypeScript
29 lines
496 B
TypeScript
import { HomeOutlined, UserOutlined } from '@ant-design/icons';
|
|
import { Breadcrumb } from 'antd';
|
|
import React from 'react';
|
|
|
|
const App: React.FC = () => (
|
|
<Breadcrumb
|
|
items={[
|
|
{
|
|
href: '',
|
|
title: <HomeOutlined />,
|
|
},
|
|
{
|
|
href: '',
|
|
title: (
|
|
<>
|
|
<UserOutlined />
|
|
<span>Application List</span>
|
|
</>
|
|
),
|
|
},
|
|
{
|
|
title: 'Application',
|
|
},
|
|
]}
|
|
/>
|
|
);
|
|
|
|
export default App;
|