olova 2.0.0 → 2.0.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 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -19,16 +19,18 @@ applications with ease.
|
|
|
19
19
|
|
|
20
20
|
To get started with Olova, first install the core library via npm or yarn.
|
|
21
21
|
|
|
22
|
-
|
|
22
|
+
```bash
|
|
23
23
|
npm install olova
|
|
24
24
|
```
|
|
25
|
+
|
|
25
26
|
or
|
|
27
|
+
|
|
26
28
|
```bash
|
|
27
29
|
yarn add olova
|
|
28
30
|
```
|
|
29
31
|
|
|
30
|
-
|
|
31
32
|
## Example Usage
|
|
33
|
+
|
|
32
34
|
Here is an example of a basic component in Olova:
|
|
33
35
|
|
|
34
36
|
```js
|
|
@@ -49,5 +51,4 @@ export default function Home() {
|
|
|
49
51
|
</>
|
|
50
52
|
);
|
|
51
53
|
}
|
|
52
|
-
|
|
53
54
|
```
|