mirror of
https://github.com/fergalmoran/nukeitter.git
synced 2025-12-22 09:51:03 +00:00
10 lines
226 B
TypeScript
10 lines
226 B
TypeScript
import React from "react";
|
|
import { RiTwitterFill } from "react-icons/ri";
|
|
import { signIn } from "next-auth/react";
|
|
|
|
const LoginPage = () => {
|
|
return <React.Fragment>Good boy</React.Fragment>;
|
|
};
|
|
|
|
export default LoginPage;
|