export default function SimpleLoading({ mensaje }: { mensaje: string }) { return (
Loading...
{mensaje}
); }