Files
AnimeTV-Frontend/app/(main)/(home)/button.tsx
Rafi Arrafif 060ceb8f32 ♻️ add root layout with navbar
create root directory for page that will use navbar and other basic elements
2025-07-10 23:57:12 +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;