MCPcopy
hub / github.com/teableio/teable / IErrorProps

Interface IErrorProps

packages/ui-lib/src/base/Error.tsx:3–6  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1import { cn } from '../shadcn';
2
3interface IErrorProps {
4 className?: string;
5 error?: string;
6}
7
8export const Error = (props: IErrorProps) => {
9 const { error, className } = props;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected