14 lines
228 B
TypeScript
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>
|
||
|
);
|
||
|
}
|