create root directory for page that will use navbar and other basic elements
11 lines
183 B
TypeScript
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;
|