react-server675fbba4
react-serverfilesexamplesmantinesrccomponentsMyNotification.tsx
examples/mantine/src/components/MyNotification.tsxtsx407 B74f885d1
"use client";

import { Button } from "@mantine/core";
import { notifications } from "@mantine/notifications";

export default function MyNotification() {
  return (
    <Button
      onClick={() =>
        notifications.show({
          title: "Default notification",
          message: "Do not forget to star Mantine on GitHub! 🌟",
        })
      }
    >
      Show notification
    </Button>
  );
}