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