Skip to content

Commit

Permalink
fix: #1 안쓰는 변수 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
leeminhee119 committed Jul 2, 2024
1 parent b059a4a commit 9fbdde3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/MainPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { useAtom } from "jotai";
import { messageAtom } from "@/store/messageAtom.tsx";

function MainPage() {
const [message, setMessage] = useAtom(messageAtom);
const [message] = useAtom(messageAtom);
return (
<div>
<span>welcome to layer 🎇</span>
Expand Down

0 comments on commit 9fbdde3

Please sign in to comment.