Skip to content

Instantly share code, notes, and snippets.

@jaeyoung-kwon
Created November 20, 2025 04:37
Show Gist options
  • Select an option

  • Save jaeyoung-kwon/6a1896afce53e296e0ff5e02f18da774 to your computer and use it in GitHub Desktop.

Select an option

Save jaeyoung-kwon/6a1896afce53e296e0ff5e02f18da774 to your computer and use it in GitHub Desktop.
function App({ show }: { show: boolean }) {
if (show) {
const [count, setCount] = useState(0); // 조건부 훅 호출
return <button onClick={() => setCount(count + 1)}>{count}</button>;
}
return <div>숨겨짐</div>;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment