Skip to content

Instantly share code, notes, and snippets.

@xbrunosousa
Created February 20, 2020 18:14
Show Gist options
  • Save xbrunosousa/d57c606f92be6f19b03d74b0a0610471 to your computer and use it in GitHub Desktop.
Save xbrunosousa/d57c606f92be6f19b03d74b0a0610471 to your computer and use it in GitHub Desktop.
import React, { useEffect, useState } from 'react';
export default () => {
const [isLoading, setLoading] = useState(true);
useEffect(() => {
setTimeout(() => setLoading(false), 2000);
}, []);
return (
<div>
{isLoading ? (<p>Carregando</p>) : (<p>Conteúdo</p>)}
</div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment