Files
bigcapital/src/components/Dashboard/DashboardPageContent.tsx
2022-09-19 21:16:02 +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>;
}