mirror of
https://github.com/Radiquum/photos.git
synced 2025-04-05 15:54:31 +00:00
20 lines
484 B
TypeScript
20 lines
484 B
TypeScript
interface BaseProps {
|
|
children: React.ReactNode;
|
|
isDev?: boolean;
|
|
}
|
|
|
|
export default function Base({ children, isDev }: BaseProps) {
|
|
return (
|
|
<html lang="en">
|
|
<head>
|
|
<meta charSet="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Radiquum/Photos</title>
|
|
{isDev ? <script src="/static/js/hotreload.js"></script> : ""}
|
|
</head>
|
|
<body>
|
|
{children}
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|