2025-09-01 10:15:15 +02:00
|
|
|
import type { NextPage } from "next";
|
2025-09-09 15:07:23 +02:00
|
|
|
import toast from "react-hot-toast";
|
2025-09-01 10:15:15 +02:00
|
|
|
import { Button } from "~/components/ui/button";
|
|
|
|
|
|
|
|
|
|
const Test: NextPage = () => {
|
|
|
|
|
return (
|
|
|
|
|
<div className="flex gap-4 p-4">
|
2025-09-09 15:07:23 +02:00
|
|
|
<Button onClick={() => toast.success("asdasdasdasdasda")} type="button">
|
|
|
|
|
test
|
2025-09-01 10:15:15 +02:00
|
|
|
</Button>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
export default Test;
|