MCPcopy Create free account
hub / github.com/sqlchat/sqlchat / Props

Interface Props

src/components/kit/Popover.tsx:4–8  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2import { ReactNode } from "react";
3
4interface Props {
5 className?: string;
6 children: ReactNode;
7 tigger: ReactNode;
8}
9
10const Popover = (props: Props) => {
11 const { className, children, tigger } = props;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected