mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
Upgrades the stability of Server Actions from experimental to canary. - Turns on enableAsyncActions and enableFormActions - Removes "experimental_" prefix from useOptimistic, useFormStatus, and useFormState
30 lines
654 B
JavaScript
30 lines
654 B
JavaScript
'use client';
|
|
|
|
import * as React from 'react';
|
|
import {useFormStatus} from 'react-dom';
|
|
import ErrorBoundary from './ErrorBoundary.js';
|
|
|
|
function Status() {
|
|
const {pending} = useFormStatus();
|
|
return pending ? 'Saving...' : null;
|
|
}
|
|
|
|
export default function Form({action, children}) {
|
|
const [isPending, setIsPending] = React.useState(false);
|
|
|
|
return (
|
|
<ErrorBoundary>
|
|
<form action={action}>
|
|
<label>
|
|
Name: <input name="name" />
|
|
</label>
|
|
<label>
|
|
File: <input type="file" name="file" />
|
|
</label>
|
|
<button>Say Hi</button>
|
|
<Status />
|
|
</form>
|
|
</ErrorBoundary>
|
|
);
|
|
}
|