ยฉ 2026 Hedgehog Software, LLC
import { render } from "solid-js/web"; export function App() { return <h1>Hello</h1>; } render(() => <App/>, document.body);
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"/> <script type="module" src="./index.jsx"></script> </head> <body> </body> </html>
render(() => <App/>, document.body);
Uncaught ReferenceError: React is not defined