Components
Loading preview...
Here is notify user info component
npx shadcn@latest add https://21st.dev/r/hari/notification// This is a demo of a preview
"use client";
import React from "react";
import Component from "@/components/ui/notification";
const DemoOne = () => {
return (
<div className="flex w-full h-screen justify-center items-center">
<Component />
</div>
);
};
export default DemoOne;