Please unzip myproject.zip and then go to myproject directroy and perfrom
yarn install
After it is done perform
yarn start which will launch the browser with the app.
Here are come os the decision I took:
- Did not use external lib like material ui for tabs and etc.
- Used css module to avoid name collision.
- Used scss so that I can use variables.
- Created components dir which contain all the App component, directly name are self explainaorty.
constantdirectory contains data and all the constant string (not done yet)assestsdirectory contain all images and/or fonts needed or used in app.stylesdirectory contain all css vaiable declaration, used in app (still need to move all values in this dir).apidirectory contain all the api calls made in this app.
Still need to write test.