* Add lint-fix npm target * Sync eslint+plugins with backend * Add prettier * Ignore no-explicit-any lint rule for now * Silence eslint react warning * Format frontend via prettier * Lint frontend. --------- Co-authored-by: antanst <>
9 lines
261 B
TypeScript
9 lines
261 B
TypeScript
import React from 'react';
|
|
|
|
const LoadingScreen: React.FC = () => (
|
|
<div className="flex h-screen w-screen items-center justify-center">
|
|
<div className="text-lg">Loading application... Please wait.</div>
|
|
</div>
|
|
);
|
|
|
|
export default LoadingScreen;
|