infoalloggi-monorepo/apps/infoalloggi/src/pages/test.tsx

15 lines
337 B
TypeScript
Raw Normal View History

import type { NextPage } from "next";
import toast from "react-hot-toast";
import { Button } from "~/components/ui/button";
const Test: NextPage = () => {
return (
<div className="flex gap-4 p-4">
<Button onClick={() => toast.success("asdasdasdasdasda")} type="button">
test
</Button>
</div>
);
};
export default Test;