diff options
Diffstat (limited to 'src/components')
| -rw-r--r-- | src/components/OAuth2Button.tsx | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/components/OAuth2Button.tsx b/src/components/OAuth2Button.tsx index 537496b..9cd009a 100644 --- a/src/components/OAuth2Button.tsx +++ b/src/components/OAuth2Button.tsx @@ -33,7 +33,7 @@ span {  `;  function OAuth2Button() { -  return <button css={buttonStyling}> +  return <button onClick={() => alert("Clicked!")} css={buttonStyling}>      <span css={{marginRight: "10px"}}><FontAwesomeIcon icon={faDiscord} css={{fontSize: "2em", marginTop: "3px"}}/></span>      <span>Sign in with Discord</span>    </button>; | 
