This repository has been archived on 2024-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
p61-project/app/+html.tsx

20 lines
444 B
TypeScript
Raw Normal View History

2024-02-16 22:51:50 +01:00
import { ScrollViewStyleReset } from "expo-router/html"
const Root: React.FC<React.PropsWithChildren> = ({ children }) => {
return (
<html lang="en">
<head>
<meta charSet="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<ScrollViewStyleReset />
</head>
<body>{children}</body>
</html>
)
}
export default Root