하위내용1 [리액트] 탭 내용까지 구현하는 방법 import Tab from "./components/Tab"; import Furniture from "./containers/Furniture"; import Option from "./containers/Option"; import Visiter from "./containers/Visiter"; type TabItem = { id: number; title: string; content: string; }; const tabItems: TabItem[] = [ { id: 1, title: "통계", content: "a" }, { id: 2, title: "옵션", content: "b" }, { id: 3, title: "품목", content: "c" }, ]; function App() { .. 2023. 3. 24. 이전 1 다음