feat: init responsive mode

This commit is contained in:
caturbgs
2021-12-09 11:31:02 +07:00
parent f27ddcfe90
commit 599a89449b
9 changed files with 438 additions and 133 deletions

View File

@@ -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>