Files
bigcapital/packages/webapp/src/components/Dashboard/DashboardPageContent.tsx
2023-02-03 01:02:31 +02:00

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>;
}