"use client";
import { MentionInput } from "mentis";
import "mentis/dist/index.css";
export const LandingDemoClient = () => {
return (
<MentionInput
options={[
{ label: "React.js", value: "reactjs" },
{ label: "TypeScript", value: "typescript" },
{ label: "Node.js", value: "nodejs" },
]}
/>
);
};