@richmd/react 1.1.0-rc.1 → 1.1.1
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
|
@@ -6,13 +6,13 @@ React component for [Richmd](https://github.com/richmd/core) - a tool for creati
|
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
8
|
# Using npm
|
|
9
|
-
npm install @richmd/
|
|
9
|
+
npm install @richmd/react
|
|
10
10
|
|
|
11
11
|
# Using yarn
|
|
12
|
-
yarn add @richmd/
|
|
12
|
+
yarn add @richmd/react
|
|
13
13
|
|
|
14
14
|
# Using pnpm
|
|
15
|
-
pnpm add @richmd/
|
|
15
|
+
pnpm add @richmd/react
|
|
16
16
|
```
|
|
17
17
|
|
|
18
18
|
## Usage with Next.js (App Router)
|
|
@@ -22,7 +22,7 @@ pnpm add @richmd/core @richmd/react
|
|
|
22
22
|
First, import the required CSS in your root layout file (`app/layout.tsx`):
|
|
23
23
|
|
|
24
24
|
```tsx
|
|
25
|
-
import "@richmd/
|
|
25
|
+
import "@richmd/react/dist/richmd.css";
|
|
26
26
|
|
|
27
27
|
export default function RootLayout({
|
|
28
28
|
children,
|