mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 04:40:32 +00:00
10 lines
197 B
TypeScript
10 lines
197 B
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
|
|
/**
|
|
* Dashboard page content.
|
|
*/
|
|
export function DashboardPageContent({ children }) {
|
|
return <div class="dashboard__page-content">{children}</div>;
|
|
}
|