@crystaltech/hsms-shared-ui 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
### Overview
|
|
6
6
|
|
|
7
|
-
`@
|
|
7
|
+
`@crystaltech/hsms-shared-ui` is a customizable UI component library built with React and Material-UI. It provides a structured layout system with a `MainLayout` component, theme customization, and configurable navigation options for web applications.
|
|
8
8
|
|
|
9
9
|
---
|
|
10
10
|
|
|
@@ -13,13 +13,13 @@
|
|
|
13
13
|
To install the package, run:
|
|
14
14
|
|
|
15
15
|
```sh
|
|
16
|
-
|
|
16
|
+
pnpm install @crystaltech/hsms-shared-ui@latest
|
|
17
17
|
```
|
|
18
18
|
|
|
19
19
|
or using Yarn:
|
|
20
20
|
|
|
21
21
|
```sh
|
|
22
|
-
yarn add @
|
|
22
|
+
yarn add @crystaltech/hsms-shared-ui@latest
|
|
23
23
|
```
|
|
24
24
|
|
|
25
25
|
---
|
|
@@ -29,7 +29,7 @@ yarn add @anwarhossain1/hsms-ui@latest
|
|
|
29
29
|
### Importing Components
|
|
30
30
|
|
|
31
31
|
```tsx
|
|
32
|
-
import { MainLayout, ThemeCustomization } from "@
|
|
32
|
+
import { MainLayout, ThemeCustomization } from "@crystaltech/hsms-shared-ui";
|
|
33
33
|
import { Box } from "@mui/material";
|
|
34
34
|
import { BrowserRouter, Routes, Route } from "react-router-dom";
|
|
35
35
|
|