Cookbook app made during a coding challenge.
This Next.js project is the beginning of an online cookbook. It has a simple user interface which allow the user to select a main ingredient from a dropdown list, and based on the selection, it displays a list of the remaining ingredients.
This is a Next.js project bootstrapped with create-next-app
using the TypeScript template.
First of all clone the repo on your own machine
git clone https://github.com/lmguerrini/cookbook-api.git
Install all the dependencies required
npm install
Start the server
npm run dev
Now you should be ready to dive into the Cookbook app at http://localhost:3000
- Fetch ingredients from internal data API
- Allow the user to select a main ingredient from a dropdown list
- Based on user selection, the ingredient list displays the remaining ingredients
Go back to Cookbook