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>;
|
||
|
|
};
|