We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7978f7 commit 79d2a4cCopy full SHA for 79d2a4c
2 files changed
source/page/Example/Carousel/Feature.tsx
@@ -1,7 +1,7 @@
1
import { JsxChildren } from 'dom-renderer';
2
import { FC } from 'web-cell';
3
import classNames from 'classnames';
4
-import { Image, Row } from 'boot-cell';
+import { Image, Row, Col } from 'boot-cell';
5
6
import * as style from './index.module.less';
7
source/page/index.tsx
@@ -15,11 +15,11 @@ export const PageRouter: FC = () => (
15
<Router>
16
<Route path="" component={HomePage} />
17
{documents.map(props => (
18
- <Route {...props} />
+ <Route key={props.path} {...props} />
19
))}
20
<Route path="example" component={ExampleHome} />
21
{examples.map(route => (
22
- <Route {...route} />
+ <Route key={route.path} {...route} />
23
24
</Router>
25
</PageFrame>
0 commit comments