Skip to content

Instantly share code, notes, and snippets.

@emmabostian
Last active August 11, 2018 08:04
Show Gist options
  • Save emmabostian/d9e19fe5872b1d5dd5f48a6ea4117458 to your computer and use it in GitHub Desktop.
Save emmabostian/d9e19fe5872b1d5dd5f48a6ea4117458 to your computer and use it in GitHub Desktop.
import React, { Component } from 'react';
import PropTypes from 'prop-types';
class Navigation extends Component {
render() {
return (
<div className="Navigation"></div>
);
}
}
Navigation.propTypes = {
recipes: PropTypes.array.isRequired
};
export default Navigation;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment