From d38636cf39b1b299fadcb376263926052fd85281 Mon Sep 17 00:00:00 2001 From: Wasin Thonkaew Date: Sun, 12 Mar 2017 04:55:43 +0800 Subject: [PATCH] Fix issue 212 --- src/components/grid/grid.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/components/grid/grid.js b/src/components/grid/grid.js index b7a838f..360cf9b 100644 --- a/src/components/grid/grid.js +++ b/src/components/grid/grid.js @@ -2,6 +2,7 @@ import React from 'react'; import classNames from 'classnames'; import GridIcon from './grid_icon'; import GridLabel from './grid_label'; +import { Link } from 'react-router'; /** * WeUI Grid wrapper, contain elements of `GridIcon` and `GridLabel` @@ -33,11 +34,11 @@ export default class Grid extends React.Component { }, className); return ( - + {icon ? {icon} : false} {children} {label ? {label} : false} - + ); } }; \ No newline at end of file