mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 04:10:32 +00:00
16 lines
313 B
JavaScript
16 lines
313 B
JavaScript
import React from 'react';
|
|
|
|
import { useApplicationBoot } from '../../components';
|
|
|
|
/**
|
|
* Private pages provider.
|
|
*/
|
|
export function PrivatePagesProvider({
|
|
// #ownProps
|
|
children,
|
|
}) {
|
|
const { isLoading } = useApplicationBoot();
|
|
|
|
return <React.Fragment>{!isLoading ? children : null}</React.Fragment>;
|
|
}
|