mirror of
https://github.com/Sosokker/B2D-Ventures.git
synced 2025-12-19 05:54:06 +01:00
27 lines
503 B
TypeScript
27 lines
503 B
TypeScript
"use client";
|
|
import {
|
|
Dialog,
|
|
DialogContent,
|
|
DialogDescription,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
DialogTrigger,
|
|
} from "@/components/ui/dialog";
|
|
import { Button } from "./ui/button";
|
|
import { DataTable } from "./dataTable";
|
|
|
|
export function Modal() {
|
|
return (
|
|
<div>
|
|
<Dialog>
|
|
<DialogTrigger asChild>
|
|
<Button>View More</Button>
|
|
</DialogTrigger>
|
|
<DialogContent>
|
|
{/* <DataTable /> */}
|
|
</DialogContent>
|
|
</Dialog>
|
|
</div>
|
|
);
|
|
}
|