리액트 주말반 세번째 수업
function App() { const [mode, setMode] = useState("WELCOME"); const [id, setId] = useState(null); const [nextId, setNextId] = useState(4); const [topics, setTopics] = useState([ { id: 1, title: "html", body: "html is ..." }, { id: 2, title: "css", body: "css is ..." }, { id: 3, title: "javascript", body: "javascript is ..." }, ]); let content = null; if (mode === "WELCOME") { ..
2025. 7. 19.