Berkcan Uçan

Results 4 comments of Berkcan Uçan

Since documentation is very limited, I think I'm gonna bump this for anyone can't figure it out . You can do something like this; ```js Home About export default {...

yeah wheres the output ????

Try this workaround: ```jsx const [domLoaded, setDomLoaded] = useState(false); useEffect(() => { setDomLoaded(true); }, []); return ( {domLoaded ? ( {your_text} ) : your_text} ); ```