import React from 'react';
import { LoadingPageIndicator } from '@theorchard/suite-components';
import { Page } from '../../components/page';

const CLASS_NAME = 'SplashPage';

export const SplashPage: React.FC = () => (
    <Page className={CLASS_NAME} testId={CLASS_NAME}>
        <LoadingPageIndicator />
    </Page>
);
