As a developer , when I got to the project I should see all of the base components created and properly linked to one another.
AC
Create directory with .js and .scss for following components in /src/components/pages
Home, Auth, NavBar, Dog, Food, Food Form, Potty, Potty Form, Exercise, Exercise Form, Grooming, Grooming Form.
Link components to one another, should work properly (H1 should be displayed)
Dev Story
As a developer , when I got to the project I should see all of the base components created and properly linked to one another.
AC
Create directory with .js and .scss for following components in /src/components/pages Home, Auth, NavBar, Dog, Food, Food Form, Potty, Potty Form, Exercise, Exercise Form, Grooming, Grooming Form. Link components to one another, should work properly (H1 should be displayed)
Dev Notes
import React from react; import './Component.scss'; class Component extends React.Component{ render() { return ( Component ; ); } }
export default Component;