mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-11 18:30:30 +00:00
16 lines
368 B
JavaScript
16 lines
368 B
JavaScript
import React from 'react';
|
|
import className from 'classnames';
|
|
import 'style/containers/FinancialStatements/FinancialSheet.scss';
|
|
|
|
export default function FinancialStatements({ name, children }) {
|
|
return (
|
|
<div
|
|
className={className('financial-statement', {
|
|
[`financial-statement--${name}`]: name,
|
|
})}
|
|
>
|
|
{children}
|
|
</div>
|
|
);
|
|
}
|