File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 11import { JsxChildren } from 'dom-renderer' ;
22import { FC } from 'web-cell' ;
33import classNames from 'classnames' ;
4- import { Image , Row } from 'boot-cell' ;
4+ import { Image , Row , Col } from 'boot-cell' ;
55
66import * as style from './index.module.less' ;
77
Original file line number Diff line number Diff line change @@ -15,11 +15,11 @@ export const PageRouter: FC = () => (
1515 < Router >
1616 < Route path = "" component = { HomePage } />
1717 { documents . map ( props => (
18- < Route { ...props } />
18+ < Route key = { props . path } { ...props } />
1919 ) ) }
2020 < Route path = "example" component = { ExampleHome } />
2121 { examples . map ( route => (
22- < Route { ...route } />
22+ < Route key = { route . path } { ...route } />
2323 ) ) }
2424 </ Router >
2525 </ PageFrame >
You can’t perform that action at this time.
0 commit comments