mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 21:00:31 +00:00
20 lines
412 B
TypeScript
20 lines
412 B
TypeScript
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)}
|
|
/>
|
|
);
|
|
}
|