diff --git a/client/app/components/Header.jsx b/client/app/components/Header.jsx new file mode 100644 index 0000000..e068151 --- /dev/null +++ b/client/app/components/Header.jsx @@ -0,0 +1,11 @@ +import React from 'react' +import { Link } from 'react-router-dom' + +// The Header creates links that can be used to navigate +// between routes. +const Header = () => ( +
+
+) + +export default Header