mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 04:40:32 +00:00
40 lines
579 B
JavaScript
40 lines
579 B
JavaScript
import React from 'react';
|
|
|
|
function DatatableEmptyState({
|
|
title,
|
|
description,
|
|
newButtonText,
|
|
newButtonUrl,
|
|
|
|
learnMoreButtonText,
|
|
learnMoreButtonUrl,
|
|
}) {
|
|
|
|
|
|
return (
|
|
<div class={'datatable-empty-state'}>
|
|
<h1 class={CLASSES.DATATABLE_EMPTY_STATE_TITLE}>
|
|
{ title }
|
|
</h1>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
|
|
export default function ExpensesEmptyState({
|
|
|
|
}) {
|
|
|
|
|
|
return (
|
|
<DatatableEmptyState
|
|
title={''}
|
|
description={''}
|
|
newButtonText={''}
|
|
newButtonUrl={''}
|
|
|
|
learnMoreButtonText={''}
|
|
learnMoreButtonUrl={''}
|
|
/>
|
|
);
|
|
} |