mirror of
https://github.com/ant-design/ant-design.git
synced 2025-08-15 13:38:29 +02:00

* site: add BehaviorPattern for en page * site: add BehaviorPattern for en page * fix: fix
25 lines
426 B
TypeScript
25 lines
426 B
TypeScript
import React from 'react';
|
|
import { Breadcrumb } from 'antd';
|
|
|
|
const App: React.FC = () => {
|
|
return (
|
|
<Breadcrumb
|
|
items={[
|
|
{
|
|
title: 'Home',
|
|
},
|
|
{
|
|
title: <a href="">Application Center</a>,
|
|
},
|
|
{
|
|
title: <a href="">Application List</a>,
|
|
},
|
|
{
|
|
title: 'An Application',
|
|
},
|
|
]}
|
|
/>
|
|
);
|
|
};
|
|
|
|
export default App;
|