create-murasaki 0.0.8 → 0.1.0
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/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// src/layout.tsx — wraps your app. Edit me to change the global shell.
|
|
2
2
|
// Global styles live in src/globals.css (auto-injected by murasaki).
|
|
3
3
|
|
|
4
|
-
import type {
|
|
4
|
+
import type { Child } from 'murasaki/jsx'
|
|
5
5
|
import type { Metadata } from 'murasaki'
|
|
6
6
|
|
|
7
7
|
export const metadata: Metadata = {
|
|
@@ -13,7 +13,7 @@ export const metadata: Metadata = {
|
|
|
13
13
|
},
|
|
14
14
|
}
|
|
15
15
|
|
|
16
|
-
export default function Layout({ children }: { children
|
|
16
|
+
export default function Layout({ children }: { children?: Child }) {
|
|
17
17
|
return (
|
|
18
18
|
<html lang="en">
|
|
19
19
|
<head>
|