+
Hello, Qwik!
+
{loaderData.value}
+
+
+
+
+
+ {action.value?.success && (
+
+ User {action.value.firstName} {action.value.lastName} added
+ successfully
+
+ )}
+
+ );
+});
+
+export const head: DocumentHead = { title: "Vite + Nitro + Qwik", meta: [] };
diff --git a/examples/qwik/src/routes/layout.tsx b/examples/qwik/src/routes/layout.tsx
new file mode 100644
index 0000000..3c1f9bf
--- /dev/null
+++ b/examples/qwik/src/routes/layout.tsx
@@ -0,0 +1,13 @@
+import { component$, Slot } from "@qwik.dev/core";
+
+export default component$(() => {
+ return (
+ <>
+