Last active
September 1, 2019 21:55
-
-
Save ryanpedersen42/ba9e9f65d1b47f0b3f8cedb5f5136124 to your computer and use it in GitHub Desktop.
auth-page.jsx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//src/pages/auth/auth-page.jsx | |
import React from 'react'; | |
import './auth-page.scss'; | |
const AuthPage = ({ handleAuth }) => ( | |
<div className='auth-page'> | |
<button className='custom-button' onClick={handleAuth}> | |
Auth with 3box | |
</button> | |
</div> | |
); | |
export default AuthPage; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment