import React, { FormEvent } from "react"; import { useAuth } from "../auth/auth.context"; import homeImg from "../icons/homeImg.png"; export const Home = () => { const { user } = useAuth(); function clickHome(e: React.MouseEvent) { e.preventDefault(); if (!user.isLoggedIn) { console.log("버튼"); location.href = "/login"; } else { location.href = "/surveys/profile"; } } return (
가장 쉽게 설문지를 만드세요!

Create now!

); };