import React from "react"; import { Loader } from "./Loader"; interface FullScreenLoaderProps { text?: string; } export const FullScreenLoader: React.FC = ({ text = "Loading...", }) => { return (
{text && (

{text}

)}
); };