import React from 'react'; interface LoaderProps { text?: string; } const Loader: React.FC = ({ text = "Thinking..." }) => { return (

{text}

); }; export default Loader;