버튼 2개를 만들어서 각 버튼마다 다른 내용이 뜨게 만들고싶은 컨셉 import { useState } from "react"; import "./styles.css"; const content = [ { tab: "section 1", content: "I'm the content of the section 1" }, { tab: "section 2", content: "I'm the content of the section 2" } ]; const useTabs = (initialTab, allTabs) => { if (!allTabs || !Array.isArray(allTabs)) { return; } const [currentIndex, setCurrentIndex] = u..