JAVASCRIPT Structure

   
  ├── 📁src
      ├── 📄App.js
      ├── 📄App.test.js
      ├── 📄index.js
      ├── 📄reportWebVitals.js
      ├── 📄router.js
      ├── 📄setup Tests.js
      ├── 📄sitemap-generator.js
      ├── 📁common
      |    ├── 📄validation.js
      |    ├── 📁animatedsection
      |    |    └── 📄index.js
      |    ├── 📁cropper
      |    |    ├── 📄cropImage.js
      |    |    ├── 📄ImageCropper.js
      |    |    └── 📄ImageModal.js
      |    ├── 📁file
      |    |    └── 📄ImageInput.js
      |    ├── 📁Hooks
      |    |    ├── 📄useDebounce.js
      |    |    ├── 📄useOnClickOutside.js
      |    |    └── 📄usePrevious.js
      ├── 📁components
      |    ├── 📁authheader
      |    |    └── 📄index.js
      |    ├── 📁button
      |    |    └── 📄index.js
      |    ├── 📁chatbot
      |    |    └── 📄index.js
      |    |    ├── 📁chatbotbody
      |    |    |     └── 📄index.js
      |    |    ├── 📁chatbotfooter
      |    |    |     └── 📄index.js
      |    |    ├── 📁chatbotheader
      |    |    |     └── 📄index.js
      |    |    └── 📁entermessagebox
      |    |          └── 📄index.js
      |    ├── 📁input
      |    |    └── 📄index.js
      |    ├── 📁loginwithgoogle
      |    |    └── 📄index.js
      |    ├── 📁modal
      |    |    ├── 📁changepassword
      |    |    |     └── 📄index.js
      |    |    ├── 📁common
      |    |    |     └── closeicon
      |    |    |           └── 📄index.js
      |    |    ├── 📁conformation
      |    |    |     └── 📄index.js
      |    |    └── 📁createknowledgesource
      |    |          └── 📄index.js
      |    ├── 📁pagination
      |    |    └── 📄index.js
      |    └── 📁textarea
      |         └── 📄index.js
      ├── 📁helpers
      |    ├── 📄Auth.js
      |    ├── 📄cookieHelper.js
      |    ├── 📁API
      |    |    └── 📄ApiData.js
      |    └── 📁utils
      |         └── 📄auth.util.js
      |         └── 📄localstore.util.js
      ├── 📁layout
      |    ├── 📁defaultLayout
      |    |    └── 📄defaultLayout.jsx
      |    └── 📁header
      |         ├── 📄index.js
      |         └── 📁profile
      |               └── 📄index.js
      ├── 📁routes
      |    ├── 📄routes.js
      |    ├── 📁changePassword
      |    |    └── 📄index.js
      |    ├── 📁forgotPassword
      |    |    └── 📄index.js
      |    ├── 📁login
      |    |    └── 📄index.js
      |    ├── 📁settings
      |    |    └── 📄index.js
      |    ├── 📁forgotPassword
      |    |    ├── 📄index.js
      |    |    ├── 📁information
      |    |    |     └── 📄index.js
      |    |    └── 📁settingstab
      |    |          └── 📄index.js
      |    ├── 📁signup
      |    |    └── 📄index.js
      |    ├── 📁stats
      |    |    ├── 📄index.js
      |    |    ├── 📁chatbotsettings
      |    |    |     ├── 📄index.js
      |    |    |     ├── 📁chatbotdetails
      |    |    |     |     └── 📄index.js
      |    |    |     ├── 📁chooseimage
      |    |    |     |     └── 📄index.js
      |    |    |     └── 📁tab
      |    |    |           └── 📄index.js
      |    |    ├── 📁chathistory
      |    |    |     ├── 📄index.js
      |    |    |     └── 📁chathistorytable
      |    |    |           └── 📄index.js
      |    |    ├── 📁embeddingscript
      |    |    |     └── 📄index.js
      |    |    ├── 📁knowledgesources
      |    |    |     └── 📄index.js
      |    |    ├── 📁statsdetails
      |    |    |     ├── 📄index.js
      |    |    |     └── 📁usage
      |    |    |           └── 📄index.js
      |    |    └── 📁statstab
      |    |          └── 📄index.js
      |    └── 📁verifyEmail
      |         └── 📄index.js
      ├── 📁routeWrappers
      |    ├── 📄ProtectedRoute.js
      |    ├── 📄routes.js
      |    └── 📄SignedInRoute.js
      └── 📁store
            └── 📄index.js
                  ├── 📄authSlice.js
                  ├── 📄embeddingSlice.js
                  └── 📄projectSlice.js