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>
|