import * as React from "react"; import { Dimmer, Loader } from "semantic-ui-react"; interface Props { active: boolean; text: string; } const MagaLoading = ({ active, text }: Props = { active: true, text: "" }) => { return (
{text}
); }; export default MagaLoading;