Major Bugfix. Fix server component client compatibility

This commit is contained in:
2026-03-22 10:34:30 +01:00
parent 9f619c8898
commit a9af20a8b2
39 changed files with 508 additions and 79 deletions
+2 -2
View File
@@ -485,12 +485,12 @@ Create `src/pages/__root.tsx` to wrap every page in a shared layout. The root co
```tsx
// src/pages/__root.tsx
import type { PropsWithChildren } from "react";
import type { BunextRootComponentProps } from "@moduletrace/bunext/types";
export default function RootLayout({
children,
props,
}: PropsWithChildren<any>) {
}: BunextRootComponentProps) {
return (
<>
<header>My App</header>