Commit 5cd5064a authored by Lee SeoYeon's avatar Lee SeoYeon
Browse files

+버튼 링크

parent 6e77fd3a
import React from "react"; import React, { FormEvent } from "react";
import { Link } from "react-router-dom"; import { useAuth } from "../auth/auth.context";
export const Home = () => ( export const Home = () => {
const { user } = useAuth();
function clickHome(e: React.MouseEvent<HTMLButtonElement>) {
e.preventDefault();
if (!user.isLoggedIn) {
console.log("버튼");
location.href = "/login";
} else {
location.href = "/profile";
}
}
return (
<div className="flex flex-col place-items-center"> <div className="flex flex-col place-items-center">
<div className="justify-end text-center text-3xl text-black h-16 mt-12"> <div className="justify-end text-center text-3xl text-black h-16 mt-12">
가장 쉽게 설문지를 만드세요! 가장 쉽게 설문지를 만드세요!
</div> </div>
<div className="flex flex-col place-items-center container"> <div className="flex flex-col place-items-center container">
<div> <div className="flex h-14 w-28 items-center border-2 border-themeColor font-bold text-black bg-gray-200 hover:bg-themeColor rounded-lg ">
<Link <button
to="/create" type="button"
className="flex h-14 w-28 items-center border-2 border-themeColor font-bold text-black bg-gray-200 hover:bg-themeColor rounded-lg " className="text-center h-full w-28 font-bold text-black place-items-center"
onClick={clickHome}
> >
<div className="text-center w-28 font-bold text-black place-items-center">
+ +
</div> </button>
</Link>
</div> </div>
<p className="text-center text-xl text-black">Create now!</p> <p className="text-center text-xl text-black">Create now!</p>
</div> </div>
...@@ -26,4 +38,5 @@ export const Home = () => ( ...@@ -26,4 +38,5 @@ export const Home = () => (
/> />
</div> </div>
</div> </div>
); );
};
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment