Files
medusa-store/packages/admin-next/dashboard/src/app.tsx
T
Kasper Fabricius Kristensen 51acd1da5b fix(dashboard): Minor cleanup and improve text legibility (#7045)
**What**
- Cleans up some artifacts from the V1 -> V2 migrations.
- Removes the MedusaProvider from the root in favor of a plain QueryClient.
- Applies font styles to make the text in admin resemble designs in Figma more closely.
2024-04-11 08:44:13 +00:00

20 lines
484 B
TypeScript

import { Toaster } from "@medusajs/ui"
import { QueryClientProvider } from "@tanstack/react-query"
import { queryClient } from "./lib/medusa"
import { RouterProvider } from "./providers/router-provider"
import { ThemeProvider } from "./providers/theme-provider"
function App() {
return (
<QueryClientProvider client={queryClient}>
<ThemeProvider>
<RouterProvider />
<Toaster />
</ThemeProvider>
</QueryClientProvider>
)
}
export default App