Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import ShareList from './components/ShareList';
import { useToken } from './lib/useToken';
import './App.css';
import './CSS/colors.css';
import SignUpBtn from './components/SignUpBtn';

function App() {
const [userToken, createToken, setToken] = useToken();
Expand Down Expand Up @@ -46,6 +47,7 @@ function App() {
<h2 className="tagline">
Eggs, bread, cheese and all the things you need.
</h2>
<SignUpBtn />
<p className="home">
Get started by creating a new list. This will log you in anonymously.
</p>
Expand Down
7 changes: 7 additions & 0 deletions src/components/SignUpBtn.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import React from 'react';

function SignUpBtn() {
return <button>Sign Up</button>;
}

export default SignUpBtn;