mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 05:40:31 +00:00
9 lines
186 B
JavaScript
9 lines
186 B
JavaScript
import React from 'react';
|
|
|
|
export default function FinancialStatementHeader({ children }) {
|
|
return (
|
|
<div class="financial-statement__header">
|
|
{ children }
|
|
</div>
|
|
);
|
|
} |