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