SignUpPage.tsx 262 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 SignUpProps = {

};

const SignUpPage = ({  }: SignUpProps) => (
    <div className="text-slate-300 text-3xl font-bold">
        회원가입페이지
    </div>
); 
 
export default SignUpPage;