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•541 B
import type { FC } from 'react';
import React from 'react';
import { FormWrap } from '../FormWrap';
import { SampleDescription } from '../SampleDescription';
import { InputDateVariants } from './partials/variants';
export const InputDateBasic: FC = () => (
<>
<SampleDescription>
<p>KolInputDate renders all types of fields for date and time input. The sample shows KolInputDate in a form context with all variations and states.</p>
</SampleDescription>
<FormWrap RefComponent={InputDateVariants} showButtons={false} />
</>
);