()
| 673 | const formRef = React.createRef(); |
| 674 | |
| 675 | function Status() { |
| 676 | const {pending} = useFormStatus(); |
| 677 | return pending ? <Text text="Pending..." /> : null; |
| 678 | } |
| 679 | |
| 680 | function App() { |
| 681 | const [state, setState] = useState('Initial'); |
nothing calls this directly
no test coverage detected