Skip to content

Instantly share code, notes, and snippets.

@atkinsio
Created March 29, 2020 20:57
Show Gist options
  • Save atkinsio/c86e67d324205c170c7c4b147dbc79fc to your computer and use it in GitHub Desktop.
Save atkinsio/c86e67d324205c170c7c4b147dbc79fc to your computer and use it in GitHub Desktop.
[React Component] #react #js
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