React Instagram Clone
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();
}
}}
>