mirror of
https://github.com/theoludwig/p61-project.git
synced 2024-07-17 07:00:12 +02:00
20 lines
444 B
TypeScript
20 lines
444 B
TypeScript
|
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
|