diff --git a/docs/recipes/ExpoRouter.md b/docs/recipes/ExpoRouter.md
index bcce6c22..9240a526 100644
--- a/docs/recipes/ExpoRouter.md
+++ b/docs/recipes/ExpoRouter.md
@@ -242,7 +242,9 @@ We're now ready to start setting up navigation for the app! If you're familiar w
```tsx
// app/_layout.tsx
import React from "react";
+import { ViewStyle } from "react-native"
import { Slot, SplashScreen } from "expo-router";
+import { GestureHandlerRootView } from "react-native-gesture-handler"
import { useInitialRootStore } from "src/models";
SplashScreen.preventAutoHideAsync();
@@ -264,8 +266,14 @@ export default function Root() {
return null;
}
- return ;
+ return (
+
+
+
+ )
}
+
+const $root: ViewStyle = { flex: 1 }
```
Move `ErrorBoundary` out of `screens/ErrorScreen` and into `src/components/ErrorBoundary`: