2023-09-14 19:10:33 +00:00
|
|
|
import { Loader, Splash } from '@vegaprotocol/ui-toolkit';
|
2023-12-01 13:42:26 +00:00
|
|
|
import { useNavigateToLastMarket } from '../../lib/hooks/use-navigate-to-last-market';
|
2022-11-08 07:23:38 +00:00
|
|
|
|
2023-09-14 19:10:33 +00:00
|
|
|
// The home pages only purpose is to redirect to the users last market,
|
|
|
|
// the top traded if they are new, or fall back to the list of markets.
|
|
|
|
// Thats why we just render a loader here
|
2022-11-08 07:23:38 +00:00
|
|
|
export const Home = () => {
|
2023-12-01 13:42:26 +00:00
|
|
|
useNavigateToLastMarket();
|
2022-11-08 07:23:38 +00:00
|
|
|
|
|
|
|
return (
|
2023-09-14 19:10:33 +00:00
|
|
|
<Splash>
|
|
|
|
<Loader />
|
|
|
|
</Splash>
|
2022-11-08 07:23:38 +00:00
|
|
|
);
|
|
|
|
};
|