Link will be share soon
-
-
npm install -g yarn -
sudo apt install yarn -
brew install yarn
-
-
https://github.com/OceanStarHit/AdamoAI_WebApp -
yarn -
yarn start -
localhost:3000/authentication
- Node : It is an open source development platform for executing JavaScript code server-side.
- React :Its is an open-source JavaScript library that is used for building user interfaces specifically for single-page applications.
- Tailwind css :In the whole project we are using Tailwind css for styling purpose.Tailwind CSS is basically a utility-first CSS framework for rapidly building custom user interfaces. It is a highly customisable, low-level CSS framework that gives you all of the building blocks you need to build bespoke designs without any annoying opinionated styles you have to fight to override.
- Node version : v16.18.1
- React version : 18.2.0
This project is currently in progress.
Compound components is an advanced React container pattern that provides a simple and efficient way for multiple components to share states and handle logic — working together.
The compound components pattern provides an expressive and flexible API for communication between a parent component and its children. Also, the compound components pattern enables a parent component to interact and share state with its children implicitly, which makes it suitable for building declarative UI.
├── public Static Files
src
│ ├── assets Images Files
│ │ ├── svgs
│ │ │ ├── **/*.svg
│ │ ├── **/*.[png, jpg]
│ ├── components Independent and reusable bits of code
│ ├── config.env Environment Configuration
│ ├── constants Constant values and Enums
│ ├── hooks Custom hook is for code reusability. For example ,instead of writing the same code across multiple components that use the same common stateful logic.
│ ├── providers Authentication and Authorization logic
│ ├── routes It enables the navigation among views of various screens in a React Application
│ ├── screens UI
│ ├── services Services help us to add additional functionalities in the project
│ ├── types Data Types
│ ├── utils It contains a set of JavaScript utility functions that are used across multiple components
│ ├── App.tsx App Component is the main component in React which acts as a container for all other components
│ ├── index.css It is used for global styles
│ └── index.tsx Index is where you would usually mount/render your main react component onto your “root” element
└── .env