mirror of
https://github.com/withastro/astro.git
synced 2025-03-10 23:01:26 -05:00
14 lines
188 B
Text
14 lines
188 B
Text
---
|
|
function Component() {
|
|
return `<div id="component">works</div>`;
|
|
}
|
|
---
|
|
<html>
|
|
<head>
|
|
<title>Testing</title>
|
|
</head>
|
|
<body>
|
|
<h1>Testing</h1>
|
|
<Component />
|
|
</body>
|
|
</html>
|