chore: remove app failure component

This commit is contained in:
asiaznik 2024-03-07 12:09:18 +01:00
parent 4bd73bfc0f
commit 46c6e27aec
No known key found for this signature in database
GPG Key ID: 4D5C8972A02C52C2
3 changed files with 0 additions and 18 deletions

View File

@ -1,16 +0,0 @@
import { Splash } from '@vegaprotocol/ui-toolkit';
export const AppFailure = ({
title,
error,
}: {
title: string;
error?: string | null;
}) => {
return (
<Splash>
<p className="mb-4 text-xl">{title}</p>
{error && <p className="mb-8 text-sm">{error}</p>}
</Splash>
);
};

View File

@ -1 +0,0 @@
export * from './app-failure';

View File

@ -1,4 +1,3 @@
export * from './app-failure';
export * from './app-loader'; export * from './app-loader';
export * from './network-loader'; export * from './network-loader';
export * from './network-switcher'; export * from './network-switcher';