You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
565 B
36 lines
565 B
import { Breadcrumb } from 'antd';
|
|
import React from 'react';
|
|
|
|
const App: React.FC = () => (
|
|
<Breadcrumb
|
|
separator=""
|
|
items={[
|
|
{
|
|
title: 'Location',
|
|
},
|
|
{
|
|
type: 'separator',
|
|
separator: ':',
|
|
},
|
|
{
|
|
href: '',
|
|
title: 'Application Center',
|
|
},
|
|
{
|
|
type: 'separator',
|
|
},
|
|
{
|
|
href: '',
|
|
title: 'Application List',
|
|
},
|
|
{
|
|
type: 'separator',
|
|
},
|
|
{
|
|
title: 'An Application',
|
|
},
|
|
]}
|
|
/>
|
|
);
|
|
|
|
export default App;
|
|
|