LoginPage.tsx 255 Bytes
Newer Older
Jiwon Yoon's avatar
Jiwon Yoon committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import React from "react";
import "tailwindcss/tailwind.css";

type LoginProps = {

};

const LoginPage = ({  }: LoginProps) => (
    <div className="text-slate-300 text-3xl font-bold">
        로그인페이지
    </div>
); 
 
export default LoginPage;