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