25 lines
419 B
Text
25 lines
419 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>
|
||
|
|
||
|
{"I'm some super long text and oh boy I sure do hope this formatter doesn't break me!"}
|
||
|
|
||
|
{colors.map((color) => (
|
||
|
<div>
|
||
|
<Color name={color} />
|
||
|
</div>
|
||
|
))}
|
||
|
</body>
|
||
|
</html>
|