markora-ui 0.1.1 → 0.1.3
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 +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -77,13 +77,13 @@ export default {
|
|
|
77
77
|
In your app's entry point:
|
|
78
78
|
|
|
79
79
|
```typescript
|
|
80
|
-
import '
|
|
80
|
+
import 'markora-ui/styles.css';
|
|
81
81
|
```
|
|
82
82
|
|
|
83
83
|
### Step 4: Start Using Components
|
|
84
84
|
|
|
85
85
|
```typescript
|
|
86
|
-
import { Button, Card, CardContent, CardHeader, CardTitle } from '
|
|
86
|
+
import { Button, Card, CardContent, CardHeader, CardTitle } from 'markora-ui';
|
|
87
87
|
|
|
88
88
|
export default function App() {
|
|
89
89
|
return (
|
|
@@ -267,7 +267,7 @@ export default function RootLayout({ children }) {
|
|
|
267
267
|
// app/page.tsx
|
|
268
268
|
'use client';
|
|
269
269
|
|
|
270
|
-
import { Button, Card, CardContent, CardHeader, CardTitle } from '
|
|
270
|
+
import { Button, Card, CardContent, CardHeader, CardTitle } from 'markora-ui';
|
|
271
271
|
|
|
272
272
|
export default function Page() {
|
|
273
273
|
return (
|
package/package.json
CHANGED