website/_includes/layouts/main.tsx

14 lines
228 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"/>
<title>{ title }</title>
</head>
<body>
{ children }
</body>
</html>
);
}