16 lines
254 B
TypeScript
16 lines
254 B
TypeScript
|
|
import { Card } from "@/components/ui/card";
|
||
|
|
import TransactionsTable from "./transactions";
|
||
|
|
|
||
|
|
const Sellers = () => {
|
||
|
|
return (
|
||
|
|
<div>
|
||
|
|
Sellers
|
||
|
|
<Card>
|
||
|
|
<TransactionsTable />
|
||
|
|
</Card>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
};
|
||
|
|
|
||
|
|
export default Sellers;
|