KRadio/src/main.ts
Triston Armstrong 13da06a270 refactor(all): rework how state is being managed
this rewrites a lot of hooks and removes providers in exchange for the store api

BREAKING CHANGE: breaks everything

fix #1
2024-03-17 15:01:06 -05:00

7 lines
146 B
TypeScript

import { App } from "./App"
import "./styles.css"
import { mount } from "kaioken"
const root = document.getElementById("root")!
mount(App, root)