ecape2023-mixlab-events/src/_includes/base.tsx
adb-sh 42741761f9
All checks were successful
continuous-integration/drone Build is passing
init
2023-02-26 23:59:53 +01:00

12 lines
230 B
TypeScript

export default ({ title, children }) => (
<html>
<head>
<title>{title}</title>
<link rel="stylesheet" href="/main.css"></link>
</head>
<body class="bg-body-400">
{children}
</body>
</html>
);