nathanieltylerowens / dogdays

0 stars 0 forks source link

Create Base Components #9

Closed nathanieltylerowens closed 4 years ago

nathanieltylerowens commented 4 years ago

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;