Skip to content

Instantly share code, notes, and snippets.

@ryanpedersen42
Last active September 1, 2019 21:55
Show Gist options
  • Save ryanpedersen42/ba9e9f65d1b47f0b3f8cedb5f5136124 to your computer and use it in GitHub Desktop.
Save ryanpedersen42/ba9e9f65d1b47f0b3f8cedb5f5136124 to your computer and use it in GitHub Desktop.
auth-page.jsx
//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