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
rows.tsx•517 B
import React from 'react';
import { KolForm, KolTextarea } from '@public-ui/react-v19';
import type { FC } from 'react';
import { SampleDescription } from '../SampleDescription';
export const TextareaRows: FC = () => (
<>
<SampleDescription>
<p>
This sample demonstrates the <code>_rows</code>-property of KolTextarea. The sample textarea has a fixed row number of 10.
</p>
</SampleDescription>
<KolForm className="w-full">
<KolTextarea _rows={10} _label="Texteingabe" />
</KolForm>
</>
);