function App() {
  return (
    <>
      <BreakpointsSection/>
      <TypeSection/>
      <UIColorSection/>
      <TokensSection/>
      <ButtonsSection/>
      <FormsSection/>
      <ComponentsSection/>
      <GlassSection/>
      <ViewportsSection/>
    </>
  );
}

const root = ReactDOM.createRoot(document.getElementById('sections'));
root.render(<App/>);
