Skip to content

Commit

Permalink
Merge branch 'hotfix/0.2.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
gocreating committed Apr 19, 2017
2 parents 20828d6 + 05fe09f commit def5d2c
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-tocas",
"version": "0.2.0",
"version": "0.2.1",
"description": "Tocas UI 2 components built with react",
"main": "lib/index.js",
"scripts": {
Expand Down
2 changes: 2 additions & 0 deletions src/Box.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ class Box extends Component {
}
}

Box.displayName = 'Box';

Box.defaultProps = {
wrapper: 'div',
};
Expand Down
2 changes: 2 additions & 0 deletions src/Button.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,6 @@ class Button extends Component {
}
}

Button.displayName = 'Button';

export default Button;
2 changes: 2 additions & 0 deletions src/Column.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ class Column extends Component {
}
}

Column.displayName = 'Column';

Column.propTypes = {
wide: PropTypes.number,
};
Expand Down
2 changes: 2 additions & 0 deletions src/Grid.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ class Grid extends Component {
}
}

Grid.displayName = 'Grid';

Grid.propTypes = {
column: PropTypes.number,
relaxed: PropTypes.bool,
Expand Down
2 changes: 2 additions & 0 deletions src/Row.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ class Row extends Component {
}
}

Row.displayName = 'Row';

Row.propTypes = {
column: PropTypes.number,
doubling: PropTypes.bool,
Expand Down

0 comments on commit def5d2c

Please sign in to comment.