Folder Structure
Last updated
Last updated
index.js is the traditional and actual entry point for all node apps. Here in React it just has code of what to render and where to render.
It has the root component of the react app because every view and component is handled with hierarchy in React, which is the top component in the hierarchy. This gives you the feel that you maintain hierarchy in your code starting from App.tsx
It contains share common components throughout the apps.
It is the main component that mounts in google search.
It is the search bar that is used in the App.tsx
Helper function that renders Custom Apps according to the data received from Backend.
It contains helper functions throughout the app.
It contains API functions to check and send data to the backend.
It contains all App Names present in the use cases.
It contains the theming configuration for Material-UI
It contains all the use-cases present in the app.
It's a common import for all of the usecases