mirror of
https://github.com/documenso/documenso
synced 2026-05-24 01:18:23 +00:00
fix: use named export
This commit is contained in:
parent
8c23bea985
commit
e97de71811
2 changed files with 3 additions and 2 deletions
|
|
@ -5,7 +5,7 @@ import { ExtendedDocumentStatus } from '@documenso/prisma/types/extended-documen
|
|||
|
||||
export type EmptyDocumentProps = { status: ExtendedDocumentStatus };
|
||||
|
||||
export default function EmptyDocumentState({ status }: EmptyDocumentProps) {
|
||||
export const EmptyDocumentState = ({ status }: EmptyDocumentProps) => {
|
||||
const {
|
||||
title,
|
||||
message,
|
||||
|
|
|
|||
|
|
@ -12,7 +12,8 @@ import { PeriodSelectorValue } from '~/components/(dashboard)/period-selector/ty
|
|||
import { DocumentStatus } from '~/components/formatter/document-status';
|
||||
|
||||
import { DocumentsDataTable } from './data-table';
|
||||
import EmptyDocumentState from './empty-state';
|
||||
import { EmptyDocumentState } from './empty-state';
|
||||
import { UploadDocument } from './upload-document';
|
||||
|
||||
export type DocumentsPageProps = {
|
||||
searchParams?: {
|
||||
|
|
|
|||
Loading…
Reference in a new issue