mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 00:03:33 +10:00
12 lines
263 B
TypeScript
12 lines
263 B
TypeScript
'use client';
|
|
|
|
import type { Document } from '@documenso/prisma/client';
|
|
|
|
export type DeleteDocumentDialogProps = {
|
|
document: Document;
|
|
};
|
|
|
|
export const DeleteDocumentDialog = ({ document }: DeleteDocumentDialogProps) => {
|
|
return <div className=""></div>;
|
|
};
|