prepare layout
This commit is contained in:
13
app/components/ShadcnButton.tsx
Normal file
13
app/components/ShadcnButton.tsx
Normal file
@@ -0,0 +1,13 @@
|
||||
"use client";
|
||||
import React from 'react';
|
||||
import { Button } from '@shadcn/ui';
|
||||
|
||||
const ShadcnButton: React.FC = () => {
|
||||
return (
|
||||
<Button onClick={() => alert('Button clicked!')}>
|
||||
Click me
|
||||
</Button>
|
||||
);
|
||||
};
|
||||
|
||||
export default ShadcnButton;
|
||||
Reference in New Issue
Block a user