feat(dashboard,ui): Streamline spacing and sizing (#6061)
This commit is contained in:
committed by
GitHub
parent
5dacd4ac9f
commit
a2c149e7e5
+12
@@ -0,0 +1,12 @@
|
||||
import { Drawer } from "@medusajs/ui"
|
||||
import { useRouteModalState } from "../../../hooks/use-route-modal-state"
|
||||
|
||||
export const ApiKeyManagementEdit = () => {
|
||||
const [open, onOpenChange] = useRouteModalState()
|
||||
|
||||
return (
|
||||
<Drawer open={open} onOpenChange={onOpenChange}>
|
||||
<Drawer.Content></Drawer.Content>
|
||||
</Drawer>
|
||||
)
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
export { ApiKeyManagementEdit as Component } from "./api-key-management-edit"
|
||||
Reference in New Issue
Block a user