import { Box, Button, Dialog, Spinner, Text, color, config } from 'folds'; import React from 'react'; import { SplashScreen } from '../components/splash-screen'; export function ConfigConfigLoading() { return ( Heating up ); } type ConfigConfigErrorProps = { error: unknown; retry: () => void; ignore: () => void; }; export function ConfigConfigError({ error, retry, ignore }: ConfigConfigErrorProps) { return ( Failed to load client configuration file. {typeof error === 'object' && error && 'message' in error && typeof error.message === 'string' && ( {error.message} )} ); }