MCPcopy Create free account
hub / github.com/code100x/cms / FormErrorsProps

Interface FormErrorsProps

src/components/posts/form/form-errors.tsx:2–5  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected