9 lines
239 B
TypeScript
9 lines
239 B
TypeScript
import App from "@medusajs/dashboard"
|
|
import React from "react"
|
|
import { createRoot } from "react-dom/client"
|
|
|
|
import "./index.css"
|
|
|
|
const container = document.getElementById("root")
|
|
const root = createRoot(container!)
|
|
root.render(<App />) |