17 lines
366 B
TypeScript
17 lines
366 B
TypeScript
import { define } from "../utils.ts";
|
|
|
|
export default define.page(function App({ Component }) {
|
|
return (
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>fresh-project</title>
|
|
</head>
|
|
<body>
|
|
<Component />
|
|
</body>
|
|
</html>
|
|
);
|
|
});
|