Skip to content

Commit

Permalink
fix proptypes
Browse files Browse the repository at this point in the history
  • Loading branch information
echenley committed Nov 1, 2015
1 parent 41ee1ba commit d3b14ac
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/js/components/PostCommentsLink.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const CommentsLink = ({ id, commentCount }) => (
</span>
);

CommentsLink.PropTypes = {
CommentsLink.propTypes = {
id: PropTypes.string,
commentCount: PropTypes.number
};
Expand Down
2 changes: 1 addition & 1 deletion src/js/components/PostCreatorLink.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const PostCreatorLink = ({ creator }) => (
</span>
);

PostCreatorLink.PropTypes = {
PostCreatorLink.propTypes = {
creator: PropTypes.string
};

Expand Down
2 changes: 1 addition & 1 deletion src/js/components/PostDeleteLink.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const PostDeleteLink = ({ post }) => (
</span>
);

PostDeleteLink.PropTypes = {
PostDeleteLink.propTypes = {
post: PropTypes.object
};

Expand Down
2 changes: 1 addition & 1 deletion src/js/components/PostLink.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const PostLink = ({ url, title }) => (
</div>
);

PostLink.PropTypes = {
PostLink.propTypes = {
url: PropTypes.string,
title: PropTypes.string
};
Expand Down
2 changes: 1 addition & 1 deletion src/js/components/PostTimeAgo.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const PostTimeAgo = ({ time }) => (
</span>
);

PostTimeAgo.PropTypes = {
PostTimeAgo.propTypes = {
time: PropTypes.string
};

Expand Down

0 comments on commit d3b14ac

Please sign in to comment.