Files
AnimeTV-Frontend/app/(home)/button.tsx
Rafi Arrafif 28d81d9792 💩 create hero UI wrapper
still need fix or downgrade tailwind to v3
2025-07-09 09:58:01 +07:00

11 lines
183 B
TypeScript

"use client";
import { Button } from "@heroui/react";
import React from "react";
const button = () => {
return <Button color="primary">Button</Button>;
};
export default button;