diff --git a/bolt-expo/app/_layout.tsx b/bolt-expo/app/_layout.tsx index f2c508e..f40e0ad 100644 --- a/bolt-expo/app/_layout.tsx +++ b/bolt-expo/app/_layout.tsx @@ -1,7 +1,18 @@ +import { useEffect } from 'react'; import { Stack } from 'expo-router'; import { StatusBar } from 'expo-status-bar'; +declare global { + interface Window { + frameworkReady?: () => void; + } +} + export default function RootLayout() { + useEffect(() => { + window.frameworkReady?.(); + }, []); + return ( <>