---
order: 5
title:
zh-CN: 带下拉菜单的面包屑
en-US: Bread crumbs with drop down menu
---
## zh-CN
面包屑支持下拉菜单。
## en-US
Breadcrumbs support drop down menu.
```tsx
import { Breadcrumb } from 'antd';
import React from 'react';
const items = [
{
key: '1',
label: (
General
),
},
{
key: '2',
label: (
Layout
),
},
{
key: '3',
label: (
Navigation
),
},
];
const App: React.FC = () => (
Ant Design
Component
General
Button
);
export default App;
```