diff --git a/examples/tuono-app/src/routes/__layout.tsx b/examples/tuono-app/src/routes/__layout.tsx
index 660ce461..8ef43630 100644
--- a/examples/tuono-app/src/routes/__layout.tsx
+++ b/examples/tuono-app/src/routes/__layout.tsx
@@ -1,4 +1,5 @@
import type { ReactNode, JSX } from 'react'
+import { TuonoScripts } from 'tuono'
interface RootLayoutProps {
children: ReactNode
@@ -9,6 +10,7 @@ export default function RootLayout({ children }: RootLayoutProps): JSX.Element {
{children}
+
)
diff --git a/examples/tuono-app/src/routes/index.tsx b/examples/tuono-app/src/routes/index.tsx
index 719f8ea6..13d1439b 100644
--- a/examples/tuono-app/src/routes/index.tsx
+++ b/examples/tuono-app/src/routes/index.tsx
@@ -2,47 +2,47 @@ import type { JSX } from 'react'
import type { TuonoProps } from 'tuono'
interface IndexProps {
- subtitle: string
+ subtitle: string
}
export default function IndexPage({
- data,
- isLoading,
+ data,
+ isLoading,
}: TuonoProps): JSX.Element {
- if (isLoading) {
- return Loading...
- }
+ if (isLoading) {
+ return Loading...
+ }
- return (
- <>
-
-
-
- TUONO
-
-
-

-

-
-
-
- >
- )
+ return (
+ <>
+
+
+
+ TUONO
+
+
+

+

+
+
+
+ >
+ )
}
diff --git a/examples/tuono-tutorial/src/routes/__layout.tsx b/examples/tuono-tutorial/src/routes/__layout.tsx
index 660ce461..8ef43630 100644
--- a/examples/tuono-tutorial/src/routes/__layout.tsx
+++ b/examples/tuono-tutorial/src/routes/__layout.tsx
@@ -1,4 +1,5 @@
import type { ReactNode, JSX } from 'react'
+import { TuonoScripts } from 'tuono'
interface RootLayoutProps {
children: ReactNode
@@ -9,6 +10,7 @@ export default function RootLayout({ children }: RootLayoutProps): JSX.Element {
{children}
+
)
diff --git a/examples/with-mdx/src/routes/__layout.tsx b/examples/with-mdx/src/routes/__layout.tsx
index e25fcb2b..f4bf5b50 100644
--- a/examples/with-mdx/src/routes/__layout.tsx
+++ b/examples/with-mdx/src/routes/__layout.tsx
@@ -1,5 +1,6 @@
import type { ReactNode, JSX } from 'react'
import { MDXProvider } from '@mdx-js/react'
+import { TuonoScripts } from 'tuono'
interface RootLayoutProps {
children: ReactNode
@@ -12,6 +13,7 @@ export default function RootLayout({ children }: RootLayoutProps): JSX.Element {
{children}
+