React Instagram Clone

From bibbleWiki
Revision as of 06:35, 28 March 2022 by Iwiseman (talk | contribs)
Jump to navigation Jump to search

Introduction

This page is about the things I found on the instagram clone created by Karl Hadwin. This was a twelve hour course which aimed to reproduce the social media app Instagram. The repo can be found here

Making the enter key Work for button Click

<button
   type="button"
   title="Sign Out"
   onClick={() => {
     firebase.auth().signOut();
   }}
   onKeyDown={(event) => {
     if (event.key === 'Enter') {
       firebase.auth().signOut();
     }
   }}
>