Skip to content

Commit

Permalink
Add missing import
Browse files Browse the repository at this point in the history
+ make listing more specific
  • Loading branch information
shilman committed Jun 6, 2017
1 parent dfabb18 commit 0ecb1bf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/components/Grid/Examples/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React from 'react';
import PropTypes from 'prop-types';
import Grid from '../Grid';
import './style.css';

Expand All @@ -18,7 +19,7 @@ const Examples = ({ items }) =>
<Grid columnWidth={350} items={items} />
</div>;
Examples.propTypes = {
items: PropTypes.array, // eslint-disable-line
items: PropTypes.array, // eslint-disable-line react/forbid-prop-types
};
Examples.defaultProps = {
items: [],
Expand Down

0 comments on commit 0ecb1bf

Please sign in to comment.