Add missing Activity export to development mode (#34439)

This is exported in the prod version of ReactServer experimental but not
the development version so we can't use it in fixtures from Server
Components.
This commit is contained in:
Sebastian Markbåge 2025-09-09 21:30:37 -04:00 committed by GitHub
parent acada3035f
commit 3bf8ab430e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -17,6 +17,7 @@ import {
REACT_SUSPENSE_TYPE,
REACT_SUSPENSE_LIST_TYPE,
REACT_VIEW_TRANSITION_TYPE,
REACT_ACTIVITY_TYPE,
} from 'shared/ReactSymbols';
import {
cloneElement,
@ -82,5 +83,6 @@ export {
// Experimental
REACT_SUSPENSE_LIST_TYPE as unstable_SuspenseList,
REACT_VIEW_TRANSITION_TYPE as unstable_ViewTransition,
REACT_ACTIVITY_TYPE as unstable_Activity,
captureOwnerStack, // DEV-only
};