summaryrefslogtreecommitdiffhomepage
path: root/packages/ui/src/index.tsx
diff options
context:
space:
mode:
authorAdam <[email protected]>2025-10-16 14:53:44 -0500
committerAdam <[email protected]>2025-10-16 14:53:44 -0500
commit47d9e017657c4d265dea53bd86d727097a7ba282 (patch)
treee278fb3983f13f6fa474228cf5031c3b4680f566 /packages/ui/src/index.tsx
parentfc18fc8a08e703a54553e714344e638673b2d313 (diff)
downloadopencode-47d9e017657c4d265dea53bd86d727097a7ba282.tar.gz
opencode-47d9e017657c4d265dea53bd86d727097a7ba282.zip
wip: css/ui and desktop work
Diffstat (limited to 'packages/ui/src/index.tsx')
-rw-r--r--packages/ui/src/index.tsx10
1 files changed, 9 insertions, 1 deletions
diff --git a/packages/ui/src/index.tsx b/packages/ui/src/index.tsx
index 0e4c4a018..caa8b1ccd 100644
--- a/packages/ui/src/index.tsx
+++ b/packages/ui/src/index.tsx
@@ -1,5 +1,6 @@
/* @refresh reload */
import { render } from "solid-js/web"
+import { MetaProvider } from "@solidjs/meta"
import App from "./app"
@@ -11,4 +12,11 @@ if (import.meta.env.DEV && !(root instanceof HTMLElement)) {
)
}
-render(() => <App />, root!)
+render(
+ () => (
+ <MetaProvider>
+ <App />
+ </MetaProvider>
+ ),
+ root!,
+)