Created
March 29, 2020 20:57
-
-
Save atkinsio/c86e67d324205c170c7c4b147dbc79fc to your computer and use it in GitHub Desktop.
[React Component] #react #js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import PropTypes from 'prop-types'; | |
const Component = ({ prop }) => ( | |
<div> | |
</div> | |
); | |
Component.propTypes = { | |
prop: PropTypes.string.isRequired | |
}; | |
export default Component; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment