mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-06-01 23:49:00 +00:00
13 lines
276 B
TypeScript
13 lines
276 B
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
import Progress from './Progress';
|
|
import { useIsFetching } from '@tanstack/react-query';
|
|
|
|
function AppProgress() {
|
|
const isFetching = useIsFetching();
|
|
|
|
return <Progress isAnimating={isFetching} />;
|
|
}
|
|
|
|
export default AppProgress;
|