mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 22:00:31 +00:00
35 lines
926 B
TypeScript
35 lines
926 B
TypeScript
// @ts-nocheck
|
|
import styled from 'styled-components';
|
|
|
|
import '@/style/pages/CashFlow/AccountTransactions/List.scss';
|
|
|
|
import AccountTransactionsDataTable from './AccountTransactionsDataTable';
|
|
import { AccountTransactionsUncategorizeFilter } from './AccountTransactionsUncategorizeFilter';
|
|
import { AccountTransactionsAllProvider } from './AccountTransactionsAllBoot';
|
|
|
|
const Box = styled.div`
|
|
margin: 30px 15px;
|
|
`;
|
|
|
|
const CashflowTransactionsTableCard = styled.div`
|
|
border: 2px solid #f0f0f0;
|
|
border-radius: 10px;
|
|
padding: 30px 18px;
|
|
background: #fff;
|
|
flex: 0 1;
|
|
`;
|
|
|
|
export default function AccountTransactionsAll() {
|
|
return (
|
|
<AccountTransactionsAllProvider>
|
|
<Box>
|
|
<AccountTransactionsUncategorizeFilter />
|
|
|
|
<CashflowTransactionsTableCard>
|
|
<AccountTransactionsDataTable />
|
|
</CashflowTransactionsTableCard>
|
|
</Box>
|
|
</AccountTransactionsAllProvider>
|
|
);
|
|
}
|