Components
Loading preview...
Here is Breadcrumb component
npx shadcn@latest add https://21st.dev/r/antdesign/breadcrumbimport React from 'react';
import { Breadcrumb } from 'antd';
const App: React.FC = () => (
<Breadcrumb
items={[
{
title: 'Users',
},
{
title: ':id',
href: '',
},
]}
params={{ id: 1 }}
/>
);
export default App;