mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 05:10:31 +00:00
feat: optimize the style of bank account transactions tables
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
import clsx from 'classnames';
|
||||
import { DataTable } from '@/components';
|
||||
import styles from './BankAccountDataTable.module.scss';
|
||||
|
||||
interface BankAccountDataTableProps {
|
||||
className?: string;
|
||||
}
|
||||
|
||||
export function BankAccountDataTable({
|
||||
className,
|
||||
...props
|
||||
}: BankAccountDataTableProps) {
|
||||
return (
|
||||
<DataTable
|
||||
{...props}
|
||||
className={clsx('table-constrant', styles.root, className)}
|
||||
/>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user