Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- - **assets**: Contains static assets like images and SCSS files for styling.
- - **images**: Stores image files.
- - **scss**: Contains SCSS files organized into components, fonts, pages, plugins, RTL (right-to-left) support, structure, and theme.
- - **common**: Holds common utilities and functions used across the application.
- - **Components**: Contains reusable React components.
- - **Authentication**: Components for login and registration.
- - **Common**: General-purpose components.
- - **Member**: Components related to member functionalities like family and profile forms.
- - **constants**: Stores constant values used throughout the application.
- - **Layouts**: Defines different layout structures.
- - **HorizontalLayout**: Horizontal layout structure.
- - **TwoColumnLayout**: Two-column layout structure.
- - **VerticalLayouts**: Vertical layout structures.
- - **locales**: Manages localization and internationalization files.
- - **pages**: Contains page components.
- - **Authentication**: Pages for login and registration.
- - **Home**: Home page components.
- - **Member**: Pages related to member functionalities like family and profile.
- - **Routes**: Defines the routing configuration for the application.
- - **slices**: Manages Redux slices for state management.
- - **authentication**: State management for login and registration.
- - **layouts**: State management for layout configurations.
- - **member**: State management for member-related data.
- - **userRoles**: State management for user roles.
- This structure helps in organizing the codebase, making it modular and maintainable.
- ```
- ├───assets
- │ ├───images
- │ └───scss
- │ ├───components
- │ ├───fonts
- │ ├───pages
- │ ├───plugins
- │ │ └───icons
- │ ├───rtl
- │ ├───structure
- │ └───theme
- ├───common
- ├───Components
- │ ├───Authentication
- │ │ ├───Login
- │ │ └───Register
- │ ├───Common
- │ └───Member
- │ ├───MemberFamily
- │ └───MemberProfileForm
- ├───constants
- ├───Layouts
- │ ├───HorizontalLayout
- │ ├───TwoColumnLayout
- │ └───VerticalLayouts
- ├───locales
- ├───pages
- │ ├───Authentication
- │ │ ├───Login
- │ │ └───Register
- │ ├───Home
- │ └───Member
- │ ├───MemberFamily
- │ └───MemberProfile
- ├───Routes
- └───slices
- ├───authentication
- │ ├───login
- │ └───register
- ├───layouts
- ├───member
- │ └───memberProfile
- └───userRoles
- ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement