0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-03-10 23:01:26 -05:00
astro/packages/astro/test/fixtures/multiple-renderers/src/pages/index.astro
Matthew Phillips 09eca9be5e
Only rethrow renderer error when no renderer found ()
* Only rethrow renderer error when no renderer found

* Adds a changeset
2022-08-03 14:33:31 -04:00

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>