MCPcopy Index your code
hub / github.com/code100x/cms / FormErrorsProps

Interface FormErrorsProps

src/components/FormError.tsx:3–6  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1import { XCircle } from 'lucide-react';
2
3interface FormErrorsProps {
4 id: string;
5 errors?: Record<string, string[] | undefined>;
6}
7
8export const FormErrors = ({ id, errors }: FormErrorsProps) => {
9 if (!errors) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected