Files
callstack__agent-device/examples/test-app/app/webview.tsx
Michał Pierzchała 11e0a1f187 feat: add WebView accessibility lab (#1397)
* feat: add WebView accessibility lab

* refactor: tighten iOS snapshot presentation rules

* fix: preserve semantic WebView containers
2026-07-25 11:40:27 +02:00

10 lines
237 B
TypeScript

import { useRouter } from 'expo-router';
import { WebViewScreen } from '../src/screens/WebViewScreen';
export default function WebViewRoute() {
const router = useRouter();
return <WebViewScreen onClose={() => router.back()} />;
}