mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 21:30:31 +00:00
WIP
This commit is contained in:
26
client/src/components/FinancialSheet.js
Normal file
26
client/src/components/FinancialSheet.js
Normal file
@@ -0,0 +1,26 @@
|
||||
import React, { Children } from 'react';
|
||||
|
||||
|
||||
export default function FinancialSheet({
|
||||
companyTitle,
|
||||
sheetType,
|
||||
date,
|
||||
children,
|
||||
accountingBasis
|
||||
}) {
|
||||
return (
|
||||
<div class="financial-sheet">
|
||||
<h1 class="financial-sheet__title">{ companyTitle }</h1>
|
||||
<h6 class="financial-sheet__sheet-type">{ sheetType }</h6>
|
||||
<span class="financial-sheet__date">{ date }</span>
|
||||
|
||||
<div class="financial-sheet__table">
|
||||
{ children }
|
||||
</div>
|
||||
|
||||
<div class="financial-sheet__accounting-basis">
|
||||
{ accountingBasis }
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user