Files
bigcapital/src/components/Dashboard/DashboardProvider.js
2021-09-21 17:13:53 +02:00

9 lines
138 B
JavaScript

import React from 'react';
/**
* Dashboard provider.
*/
export default function DashboardProvider({ children }) {
return children;
}