mirror of
https://github.com/withastro/astro.git
synced 2025-01-13 22:11:20 -05:00
19 lines
301 B
Text
19 lines
301 B
Text
|
---
|
||
|
import Color from '../components/Color.jsx';
|
||
|
|
||
|
let title =
|
||
|
'My Site';
|
||
|
|
||
|
const colors = ['red', 'yellow', 'blue',];
|
||
|
---
|
||
|
|
||
|
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<title>My site</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>{title}</h1>
|
||
|
</body>
|
||
|
</html>
|