This commit is contained in:
Alistair Smith
2025-09-24 21:34:49 -07:00
parent c1931c11fe
commit f65d89ff8b
5 changed files with 17 additions and 19 deletions

View File

@@ -3,9 +3,9 @@
"workspaces": {
"": {
"dependencies": {
"react": "^0.0.0-experimental-e2332183-20250924",
"react-dom": "^0.0.0-experimental-e2332183-20250924",
"react-refresh": "^0.0.0-experimental-e2332183-20250924",
"react": "0.0.0-experimental-e2332183-20250924",
"react-dom": "0.0.0-experimental-e2332183-20250924",
"react-refresh": "0.0.0-experimental-e2332183-20250924",
},
"devDependencies": {
"@types/react": "^19.1.13",

View File

@@ -69,6 +69,12 @@ const initialRscPayload: Promise<NonNullishReactNode> =
}),
);
declare global {
interface Window {
__bun_f: Array<string | Uint8Array<ArrayBuffer>>;
}
}
const appStore: Store<AppState> = store<AppState>({
rsc: initialRscPayload,
});