mentis
  • Documentation
mentis

mentis

A small, fast, and flexible
mention input solution.

DocumentationGitHub

Works with

"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" },
      ]}
    />
  );
};