mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 16:23:06 +10:00
feat: created the dialog file for delete of document
This commit is contained in:
@ -0,0 +1,11 @@
|
|||||||
|
'use client';
|
||||||
|
|
||||||
|
import type { Document } from '@documenso/prisma/client';
|
||||||
|
|
||||||
|
export type DeleteDocumentDialogProps = {
|
||||||
|
document: Document;
|
||||||
|
};
|
||||||
|
|
||||||
|
export const DeleteDocumentDialog = ({ document }: DeleteDocumentDialogProps) => {
|
||||||
|
return <div className=""></div>;
|
||||||
|
};
|
||||||
Reference in New Issue
Block a user