Skip to content

Commit

Permalink
destructure proptypes
Browse files Browse the repository at this point in the history
  • Loading branch information
echenley committed Sep 20, 2015
1 parent 147b893 commit d32fa4d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/js/components/Icon.jsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
'use strict';

import React from 'react/addons';
import React, { PropTypes } from 'react/addons';

const Icon = React.createClass({
propTypes: {
svg: React.PropTypes.string.isRequired,
svg: PropTypes.string.isRequired
},

render() {
Expand Down

0 comments on commit d32fa4d

Please sign in to comment.