mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 21:00:31 +00:00
9 lines
177 B
JavaScript
9 lines
177 B
JavaScript
import React from 'react';
|
|
|
|
export default function DashboardPageContent({ children }) {
|
|
return (
|
|
<div class="dashboard__page-content">
|
|
{ children }
|
|
</div>
|
|
)
|
|
} |