website/_includes/layouts/main.tsx

14 lines
228 B
TypeScript

export default function({ title, children }) {
return (
<html>
<head>
<meta charSet="utf-8"/>
<title>{ title }</title>
</head>
<body>
{ children }
</body>
</html>
);
}