mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-06-05 09:29:00 +00:00
re-structure to monorepo.
This commit is contained in:
14
packages/webapp/src/components/NProgress/AppProgress.tsx
Normal file
14
packages/webapp/src/components/NProgress/AppProgress.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
// @ts-nocheck
|
||||
import React from 'react';
|
||||
import Progress from './Progress';
|
||||
import {useIsFetching} from 'react-query';
|
||||
|
||||
function AppProgress() {
|
||||
const isFetching = useIsFetching();
|
||||
|
||||
return (
|
||||
<Progress isAnimating={isFetching} />
|
||||
);
|
||||
};
|
||||
|
||||
export default AppProgress;
|
||||
Reference in New Issue
Block a user