website/_includes/layouts/main.tsx

15 lines
279 B
TypeScript
Raw Normal View History

2023-07-23 16:44:56 -04:00
export default function({ title, children }) {
return (
<html>
<head>
<meta charSet="utf-8"/>
2023-07-23 16:44:56 -04:00
<title>{ title }</title>
2023-07-23 20:21:43 -04:00
<link rel="stylesheet" href="styles.css"/>
2023-07-23 16:44:56 -04:00
</head>
<body>
{ children }
</body>
</html>
);
}