mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 05:10:31 +00:00
9 lines
138 B
JavaScript
9 lines
138 B
JavaScript
import React from 'react';
|
|
|
|
/**
|
|
* Dashboard provider.
|
|
*/
|
|
export default function DashboardProvider({ children }) {
|
|
return children;
|
|
}
|