16 lines
243 B
TypeScript
16 lines
243 B
TypeScript
|
import { htmlDocument, prettify } from "antihtml";
|
||
|
|
||
|
export const index = htmlDocument(
|
||
|
prettify(
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>My Website</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>My Website</h1>
|
||
|
<p>Hello world!</p>
|
||
|
</body>
|
||
|
</html>
|
||
|
)
|
||
|
);
|