We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/deleonio/public-ui-kolibri'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
basic.tsx•594 B
import type { FC } from 'react';
import React from 'react';
import { KolAlert, KolLink } from '@public-ui/react-v19';
import { DialogBasic } from '../dialog/basic';
/**
* @deprecated Use `DialogBasic` from '../dialog/basic' instead.
*/
export const ModalBasic: FC = () => (
<>
<KolAlert _label="Component is DEPRECATED" _type="error" _variant="card" className="header-alert">
The Modal component was renamed to Dialog. Please use the Dialog sample instead.
<KolLink _href="/#/dialog" _target="_blank" _label="Open Dialog samples" />
</KolAlert>
<DialogBasic />
</>
);