()
| 7 | const h = React.createElement; |
| 8 | |
| 9 | function Status() { |
| 10 | const {pending} = useFormStatus(); |
| 11 | return pending ? 'Saving...' : null; |
| 12 | } |
| 13 | |
| 14 | export default function Form({action, children}) { |
| 15 | const [isPending, setIsPending] = React.useState(false); |
nothing calls this directly
no test coverage detected