Skip to content

Commit 7d7a0bb

Browse files
committed
Updated readmi file
1 parent 214aa99 commit 7d7a0bb

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

README.md

+7-8
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ In the previous version, we used a package called `NextGenMUI`. While it was use
3737
└──────────────────────────────────────────────┘
3838
```
3939

40-
- **Description**: The `app` folder contains primary page components organized by business domains (e.g., `dashboard`, `finance`, `suppliers`). Each subfolder is responsible for rendering specific pages or views within the application and organizing related files (`page.tsx`, `layout.tsx`, `loading.tsx`) into isolated units for each feature.
40+
- The `app` folder contains primary page components organized by business domains (e.g., `dashboard`, `finance`, `suppliers`). Each subfolder is responsible for rendering specific pages or views within the application and organizing related files (`page.tsx`, `layout.tsx`, `loading.tsx`) into isolated units for each feature.
4141

4242
---
4343

@@ -61,7 +61,7 @@ In the previous version, we used a package called `NextGenMUI`. While it was use
6161
└──────────────────────────────────────────────┘
6262
```
6363

64-
- **Description**: The `components` folder acts as a UI library, containing reusable UI components like buttons, grids, inputs, dialogs, and navigational elements. Each subfolder groups similar components together, enabling modular and consistent UI development.
64+
- The `components` folder acts as a UI library, containing reusable UI components like buttons, grids, inputs, dialogs, and navigational elements. Each subfolder groups similar components together, enabling modular and consistent UI development.
6565

6666
---
6767

@@ -88,7 +88,7 @@ In the previous version, we used a package called `NextGenMUI`. While it was use
8888
└──────────────────────────────────────────────┘
8989
```
9090

91-
- **Description**: The `api` folder is dedicated to managing API requests and handling configuration for HTTP requests. The `apiClient.ts` file is the central file for configuring `axios` with custom headers and interceptors, while `urls.ts` centralizes the API endpoints, and `types.ts` provides typings for API responses.
91+
- The `api` folder is dedicated to managing API requests and handling configuration for HTTP requests. The `apiClient.ts` file is the central file for configuring `axios` with custom headers and interceptors, while `urls.ts` centralizes the API endpoints, and `types.ts` provides typings for API responses.
9292

9393
---
9494

@@ -116,7 +116,7 @@ In the previous version, we used a package called `NextGenMUI`. While it was use
116116
└──────────────────────────────────────────────┘
117117
```
118118

119-
- **Description**: The `UIModel` folder encapsulates components and classes responsible for managing data grids, forms, and CRUD interactions within the UI. This includes `UIModel.tsx` as the main component for UI data management, and `UIConstructor.tsx` for constructing model instances or configurations. Types are defined within `types.ts` to support these components.
119+
- The `UIModel` folder encapsulates components and classes responsible for managing data grids, forms, and CRUD interactions within the UI. This includes `UIModel.tsx` as the main component for UI data management, and `UIConstructor.tsx` for constructing model instances or configurations. Types are defined within `types.ts` to support these components.
120120

121121
---
122122

@@ -135,7 +135,7 @@ In the previous version, we used a package called `NextGenMUI`. While it was use
135135
└──────────────────────────────────────────────┘
136136
```
137137

138-
- **Description**: The `Context` folder contains files related to React Context and global state management. It provides global state to components where needed, facilitating state-sharing across deeply nested component trees.
138+
- The `Context` folder contains files related to React Context and global state management. It provides global state to components where needed, facilitating state-sharing across deeply nested component trees.
139139

140140
---
141141

@@ -154,8 +154,7 @@ In the previous version, we used a package called `NextGenMUI`. While it was use
154154
└──────────────────────────────────────────────┘
155155
```
156156

157-
- **Description**: The `hooks` folder centralizes custom hooks, such as `useFetch` and `useMutate`, for API interaction. These hooks abstract the logic for data fetching and mutation, making them reusable and maintaining a clean separation from the components.
158-
157+
- The `hooks` folder centralizes custom hooks.
159158
---
160159

161160
#### 7. **Utilities and Constants**
@@ -182,7 +181,7 @@ In the previous version, we used a package called `NextGenMUI`. While it was use
182181
└──────────────────────────────────────────────┘
183182
```
184183

185-
- **Description**: The `utils` folder contains utility functions that can be reused across the project, such as formatters, validators, and general-purpose helpers. The `Constants` folder stores values that are constant throughout the app, such as color schemes, route definitions, and dropdown options.
184+
- The `utils` folder contains utility functions that can be reused across the project, such as formatters, validators, and general-purpose helpers.
186185

187186
### Running the project
188187

0 commit comments

Comments
 (0)