Using these projects as a base, fork this repo, and write an Express API and React app to display a list of Animals.
Some placeholder animal data is provided in /server/data.js
const data = require('./data');
The server was generated using express-generator
> cd server
> npm install
> npm start
The client was generated using Create React App.
> cd client
> npm install
> npm start
When you're finished, commit your changes and open a PR into the original repo (https://github.com/MACU-Interviews/express-react-app)
- Style the list
- Add create, update, and delete functionality
- Add a text search filter to the list