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