@nusameta/design-system 0.0.2 → 0.0.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 +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -41,7 +41,7 @@ Agar tampilan komponen muncul dengan benar, Anda harus mengimpor file CSS librar
|
|
|
41
41
|
import './globals.css';
|
|
42
42
|
|
|
43
43
|
// 👇 Import CSS Design System di sini
|
|
44
|
-
import '@
|
|
44
|
+
import '@nusameta/design-system/dist/index.css';
|
|
45
45
|
|
|
46
46
|
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
|
47
47
|
return (
|
|
@@ -55,7 +55,7 @@ Agar tampilan komponen muncul dengan benar, Anda harus mengimpor file CSS librar
|
|
|
55
55
|
|
|
56
56
|
Anda bisa langsung mengimpor komponen dan menggunakannya di halaman manapun.
|
|
57
57
|
|
|
58
|
-
import { Button } from '@
|
|
58
|
+
import { Button } from '@nusameta/design-system';
|
|
59
59
|
|
|
60
60
|
export default function HomePage() {
|
|
61
61
|
return (
|