fix: remove useless fragments

This commit is contained in:
Yasin Silavi
2023-10-23 23:14:21 +03:30
committed by Bill Thornton
parent b4f745599b
commit 4c76ce11dd
4 changed files with 25 additions and 26 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
import React, { FunctionComponent, useEffect } from 'react';
import { FunctionComponent, useEffect } from 'react';
import loading from './loading';
@@ -11,7 +11,7 @@ const Loading: FunctionComponent = () => {
};
}, []);
return <></>;
return null;
};
export default Loading;