import React, { Fragment } from 'react' import { useAuth } from 'contexts/AuthContext' import AuthModal from 'components/AuthModal' import Header from 'components/Header' import logo from 'assets/react.svg' import 'styles/ReactWelcome.css' const App = () => { return (
) } const ReactWelcome = () => { return ( logo

Edit src/App.tsx and save to reload.

Learn React
) } const LoggedInStatus = () => { const { isLoggedIn, account } = useAuth() if (isLoggedIn && !!account) { return

Hey, {account.username}! I'm happy to let you know: you are authenticated!

} return

Don't forget to start your backend server, and then authenticate yourself.

} export default App