feat: init responsive mode
This commit is contained in:
@@ -6,8 +6,8 @@ export const BreadcumbComponent = (props) => {
|
||||
return (
|
||||
<div>
|
||||
<Breadcrumb style={{marginBottom: 10}}>
|
||||
{props.data.map((e) => (
|
||||
<Breadcrumb.Item>
|
||||
{props.data.map((e, index) => (
|
||||
<Breadcrumb.Item key={index}>
|
||||
<Link to={e.route}>
|
||||
<span>{e.name}</span>
|
||||
</Link>
|
||||
|
||||
Reference in New Issue
Block a user