mirror of
https://github.com/oven-sh/bun
synced 2026-02-14 12:51:54 +00:00
10 lines
214 B
JavaScript
10 lines
214 B
JavaScript
const template = (
|
|
<div id="main">
|
|
<style>{"div { color: red; }"}</style>
|
|
<h1>Welcome</h1>
|
|
<label for={"entry"}>Edit:</label>
|
|
<input id="entry" type="text" />
|
|
{/* Comment Node */}
|
|
</div>
|
|
);
|