add second page

This commit is contained in:
Hope87
2021-05-31 13:40:49 +03:00
parent 7464e823b8
commit 844cc7f9df
6 changed files with 48 additions and 921 deletions

View File

@ -1,6 +1,8 @@
import React from 'react';
import Auth from '../components/Auth';
const AuthPage = () => <Auth />;
const AuthPage = ({ setAuth }) => {
return <Auth setAuthed={setAuth} />;
};
export default AuthPage;