11 lines
225 B
TypeScript
11 lines
225 B
TypeScript
import { Button } from '@imphnen-frontend-service/shadcn-ui/atoms';
|
|
|
|
export default function Page() {
|
|
return (
|
|
<>
|
|
<h1 className="text-2xl underline">Hello World</h1>
|
|
<Button>Click Me</Button>
|
|
</>
|
|
);
|
|
}
|