youtube-downloader

Simple Next.js website and interface to download YouTube videos to mp3 or mp4 files with URLs
git clone https://codeberg.org/night0721/youtube-downloader
Log | Files | Refs | README | LICENSE

_app.tsx (186B)


      1 import "tailwindcss/tailwind.css";
      2 
      3 import type { AppProps } from "next/app";
      4 
      5 export default function App({ Component, pageProps }: AppProps) {
      6   return <Component {...pageProps} />;
      7 }