mirror of
https://github.com/NovaOSS/nova-betterchat.git
synced 2024-11-25 17:24:00 +01:00
remove loading screen
This commit is contained in:
parent
b04e95b1b8
commit
7b1dae90ad
13
src/App.tsx
13
src/App.tsx
|
@ -1,9 +1,8 @@
|
|||
import React, { useEffect, Suspense } from 'react';
|
||||
import React, { useEffect } from 'react';
|
||||
import useStore from '@store/store';
|
||||
|
||||
import Chat from '@components/Chat';
|
||||
import Menu from '@components/Menu';
|
||||
import LoadingScreen from '@components/LoadingScreen';
|
||||
|
||||
import useInitialiseNewChat from '@hooks/useInitialiseNewChat';
|
||||
import { ChatInterface } from '@type/chat';
|
||||
|
@ -66,12 +65,10 @@ function App() {
|
|||
}, []);
|
||||
|
||||
return (
|
||||
<Suspense fallback={<LoadingScreen />}>
|
||||
<div className='overflow-hidden w-full h-full relative'>
|
||||
<Menu />
|
||||
<Chat />
|
||||
</div>
|
||||
</Suspense>
|
||||
<div className='overflow-hidden w-full h-full relative'>
|
||||
<Menu />
|
||||
<Chat />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
@ -1,12 +0,0 @@
|
|||
import React from 'react';
|
||||
import SpinnerIcon from '@icon/SpinnerIcon';
|
||||
|
||||
const LoadingScreen = () => {
|
||||
return (
|
||||
<div className='w-full h-full flex justify-center items-center bg-gray-800 text-gray-100'>
|
||||
<SpinnerIcon className='inline w-12 h-12 text-gray-400 fill-green-500/60 animate-spin' />
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default LoadingScreen;
|
|
@ -1 +0,0 @@
|
|||
export { default } from './LoadingScreen';
|
Loading…
Reference in a new issue