import { Breadcrumb } from 'antd';
import React from 'react';
const menuItems = [
{
key: '1',
label: (
General
),
},
{
key: '2',
label: (
Layout
),
},
{
key: '3',
label: (
Navigation
),
},
];
const App: React.FC = () => (
Component,
},
{
title: General,
menu: { items: menuItems },
},
{
title: 'Button',
},
]}
/>
);
export default App;