-
Update trello to reflect the work needed for the assignment located in
🏠 Challenge: Apartment App React Configurations
on Apartment App React Configurations -
Create empty github repo
-
Create react app locally
-
Add Reactstrap dependencies
-
Create directories: assets, components, pages,
__tests__
-
Modify App.js to be a basic functional component
import React from "react";
const App = () => {
return(
<>
<h1>Apartment App</h1>
</>
)
}
-
Create the Header and Footer components with basic code
-
Create the following pages with basic code: Home, SignUp, SignIn, AptIndex, AptProtectedIndex, AptShow, AptNew, AptEdit, and NotFound
-
Add React Router dependencies and configurations
-
Define routes to all the pages in my application
-
Create mock data for users and apartments and set the data to state in the App.js component
-
Connect empty github repo and local react app
-
Rename branch and perform initial commit: $
git branch -M main
-
Ask for branch protections