mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 12:20:31 +00:00
12 lines
251 B
JavaScript
12 lines
251 B
JavaScript
|
|
|
|
export default function TableBody({}) {
|
|
return (
|
|
<ScrollSyncPane>
|
|
<div {...getTableBodyProps()} className="tbody">
|
|
<div class="tbody-inner" style={{ minWidth: totalColumnsWidth }}></div>
|
|
</div>
|
|
</ScrollSyncPane>
|
|
);
|
|
}
|