In this project, we'll dive deep into the implementation of a single common UI component: A <Toast> message component.Look at the live version.
The challenge is to build out resuable toast component and get it working as per requirement.
This project is created with Parcel. It's intended to be run locally, on your computer, using Node.js and NPM.
To jog your memory, here are the terminal commands you'll need to run:
git clone https://github.com/dev-arminder/project-toast.git
cd project-toast
npm install
npm run devTo create new components, you can use this helper script. It saves you a bit of time, creating all the files and adding the standard code:
# Create a new component:
npm run new-component [TheNewComponentName]