feat(admin,admin-ui,medusa): Add Medusa Admin plugin (#3334)
This commit is contained in:
committed by
GitHub
parent
d6b1ad1ccd
commit
40de54b010
13
packages/admin-ui/ui/src/main.tsx
Normal file
13
packages/admin-ui/ui/src/main.tsx
Normal file
@@ -0,0 +1,13 @@
|
||||
import ReactDOM from "react-dom/client"
|
||||
import "./assets/styles/global.css"
|
||||
import MedusaApp from "./medusa-app"
|
||||
|
||||
async function run() {
|
||||
const app = new MedusaApp()
|
||||
|
||||
ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render(
|
||||
app.render()
|
||||
)
|
||||
}
|
||||
|
||||
run()
|
||||
Reference in New Issue
Block a user