Design system.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

15 regels
288 B

  1. import '@/styles/globals.css'
  2. import '@/styles/kitchen-sink.css'
  3. import '@modal-sh/react-refractor/dist/Refractor.css'
  4. import type { AppProps } from 'next/app'
  5. const App = ({ Component, pageProps }: AppProps) => {
  6. return (
  7. <Component {...pageProps} />
  8. );
  9. };
  10. export default App;