Preview:
_app.tsx

import React from "react";

import {HeroUIProvider} from "@heroui/react";



const Application = ({Component, pageProps}) => {

  return (

    <HeroUIProvider>

      <main className={isDark ? "dark" : "light"}>

        <Component {...pageProps} />

      </main>

    </HeroUIProvider>

  );

};



export default Application;  
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter