diff options
| author | real-zephex <[email protected]> | 2024-06-12 15:37:30 +0530 |
|---|---|---|
| committer | real-zephex <[email protected]> | 2024-06-12 15:37:30 +0530 |
| commit | 493e3f4568d0eb33312b160dcbb9cf412999824b (patch) | |
| tree | ab8eec79db0cba6ac4d19a087bbe4c0065b18229 /src/app/manga/components/downloadButton.jsx | |
| parent | 🚀 feat(download): implement direct manga downloads (diff) | |
| download | dramalama-493e3f4568d0eb33312b160dcbb9cf412999824b.tar.xz dramalama-493e3f4568d0eb33312b160dcbb9cf412999824b.zip | |
switched manga downloaded api to render
Diffstat (limited to 'src/app/manga/components/downloadButton.jsx')
| -rw-r--r-- | src/app/manga/components/downloadButton.jsx | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/app/manga/components/downloadButton.jsx b/src/app/manga/components/downloadButton.jsx deleted file mode 100644 index 0942dfb..0000000 --- a/src/app/manga/components/downloadButton.jsx +++ /dev/null @@ -1,15 +0,0 @@ -import { Button } from "@nextui-org/react"; -import Link from "next/link"; - -const DownloadButton = async ({ id: id }) => { - return ( - <Button - as={Link} - href={`https://manga-downloader-api.vercel.app/${id}`} - > - Download - </Button> - ); -}; - -export default DownloadButton; |