Rename loading component file

This commit is contained in:
Bill Thornton
2022-10-31 03:24:27 -04:00
parent 5c080f4fc5
commit 227da79502
2 changed files with 1 additions and 1 deletions
@@ -0,0 +1,17 @@
import React, { FunctionComponent, useEffect } from 'react';
import loading from './loading';
const Loading: FunctionComponent = () => {
useEffect(() => {
loading.show();
return () => {
loading.hide();
};
}, []);
return <></>;
};
export default Loading;