16. 이벤트 처리하기

  • 프로젝트 링크open in new window

  • 이벤트 처리하기

    src/App.tsx
    import TabButton from "./TabButton";
    
    function App() {
      return (
        <section id="examples">
          <h2>Examples</h2>
          <menu>
            <TabButton>Components</TabButton>
          </menu>
        </section>
      );
    }