Share: sync
This commit is contained in:
24
app/packages/web/src/index.tsx
Normal file
24
app/packages/web/src/index.tsx
Normal file
@@ -0,0 +1,24 @@
|
||||
/* @refresh reload */
|
||||
import { render } from "solid-js/web"
|
||||
import { Router, Route } from "@solidjs/router"
|
||||
|
||||
import "./index.css"
|
||||
import App from "./App"
|
||||
|
||||
const root = document.getElementById("root")
|
||||
|
||||
if (import.meta.env.DEV && !(root instanceof HTMLElement)) {
|
||||
throw new Error(
|
||||
"Root element not found. Did you forget to add it to your index.html? Or maybe the id attribute got misspelled?",
|
||||
)
|
||||
}
|
||||
|
||||
render(
|
||||
() => (
|
||||
<Router>
|
||||
<Route path="/share/:id" component={App} />
|
||||
<Route path="/" component={App} />
|
||||
</Router>
|
||||
),
|
||||
root!,
|
||||
)
|
||||
Reference in New Issue
Block a user