Created
February 20, 2020 18:14
-
-
Save xbrunosousa/d57c606f92be6f19b03d74b0a0610471 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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