2025-04-26 22:38:28 +07:00
|
|
|
import { Button } from '@imphnen-frontend-service/shadcn-ui/atoms';
|
|
|
|
|
|
2025-04-26 21:13:19 +07:00
|
|
|
export default function Page() {
|
2025-04-26 22:38:28 +07:00
|
|
|
return (
|
|
|
|
|
<>
|
|
|
|
|
<h1 className="text-2xl underline">Hello World</h1>
|
|
|
|
|
<Button>Click Me</Button>
|
|
|
|
|
</>
|
|
|
|
|
);
|
2025-04-26 20:32:58 +07:00
|
|
|
}
|