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