Anthony Oyathelemhi
Dev Notes by Tony

Dev Notes by Tony

Follow
homebadges
Tag

React

#reactjs

More content

Read more stories on Hashnode


Articles with this tag

Add Auto-logout To A React App

Nov 14, 20212 min read

Learn how to correctly implement auto-logout logic in React ยท TL;DR const logoutTimerIdRef = useRef(null); useEffect(() => { const autoLogout = () =>...

Add Auto-logout To A React App

How to preload pages with Nextjs

Aug 15, 20212 min read

There are two next-specific ways you can navigate between pages in a Nextjs application (on the client side) Using the component from next/link...

How to preload pages with Nextjs