// Test the custom HTML component is rendered during SSR. import { usePathname } from 'expo-router'; import { ScrollViewStyleReset } from 'expo-router/html'; export default function Html({ children }) { // Test that this is defined and works during SSR. const pathname = usePathname(); return ( {/* Test that public env vars are exposed */} {/* Test that server-only env vars are exposed as this file is a server file. */} {children} ); }