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