feat(login component/route): add: Login Component and Route

This commit is contained in:
Alexander Zoitos
2020-08-19 22:38:43 -04:00
parent 533ede1ab7
commit 6e47be2fa8
2 changed files with 42 additions and 0 deletions

13
src/pages/login.tsx Normal file
View File

@@ -0,0 +1,13 @@
import React from 'react';
import { NextPage } from 'next';
import Login from '../components/Login';
const LoginPage: NextPage = () => {
return (
<div className="w-full">
<Login />
</div>
);
};
export default LoginPage;