feat: marketplaces editor in clients page
This commit is contained in:
@ -0,0 +1,18 @@
|
||||
import React from "react";
|
||||
import { Flex } from "@mantine/core";
|
||||
import MarketplacesHeader from "@/app/clients/drawers/ClientMarketplacesDrawer/components/MarketplacesHeader";
|
||||
import MarketplacesTable from "@/app/clients/drawers/ClientMarketplacesDrawer/components/MarketplacesTable";
|
||||
|
||||
const DrawerBody = () => {
|
||||
return (
|
||||
<Flex
|
||||
gap={"xs"}
|
||||
h={"100%"}
|
||||
direction={"column"}>
|
||||
<MarketplacesHeader />
|
||||
<MarketplacesTable />
|
||||
</Flex>
|
||||
);
|
||||
};
|
||||
|
||||
export default DrawerBody;
|
||||
Reference in New Issue
Block a user