mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 04:10:32 +00:00
25 lines
548 B
JavaScript
25 lines
548 B
JavaScript
import React from 'react';
|
|
import styled from 'styled-components';
|
|
|
|
const FinancialStatementRoot = styled.div``;
|
|
const FinancialStatementBodyRoot = styled.div``;
|
|
|
|
/**
|
|
*
|
|
* @param {*} param0
|
|
* @returns
|
|
*/
|
|
export function FinancialStatement({ children, className }) {
|
|
return <FinancialStatementRoot children={children} className={className} />;
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param {React.JSX}
|
|
*/
|
|
export function FinancialStatementBody({ children, className }) {
|
|
return (
|
|
<FinancialStatementBodyRoot children={children} className={className} />
|
|
);
|
|
}
|