function Loading({ text }: { text?: string }) { return (
{text && text}
) } export default Loading