mirror of
https://github.com/callstack/agent-device.git
synced 2026-09-14 20:06:34 +08:00
11e0a1f187
* feat: add WebView accessibility lab * refactor: tighten iOS snapshot presentation rules * fix: preserve semantic WebView containers
10 lines
237 B
TypeScript
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()} />;
|
|
}
|