diff --git a/releases/next/docs/actionsheetios.html b/releases/next/docs/actionsheetios.html index 4dd37c243e6..c6c12185019 100644 --- a/releases/next/docs/actionsheetios.html +++ b/releases/next/docs/actionsheetios.html @@ -187,27 +187,27 @@ exports.description .examples = [ { title: 'Show Action Sheet', - render(): ReactElement { return <ActionSheetExample />; } + render(): ReactElement<any> { return <ActionSheetExample />; } }, { title: 'Show Action Sheet with tinted buttons', - render(): ReactElement { return <ActionSheetTintExample />; } + render(): ReactElement<any> { return <ActionSheetTintExample />; } }, { title: 'Show Share Action Sheet', - render(): ReactElement { + render(): ReactElement<any> { return <ShareActionSheetExample url="https://code.facebook.com" />; } }, { title: 'Share Local Image', - render(): ReactElement { + render(): ReactElement<any> { return <ShareActionSheetExample url="bunny.png" />; } }, { title: 'Share Screenshot', - render(): ReactElement { + render(): ReactElement<any> { return <ShareScreenshotExample />; } } diff --git a/releases/next/docs/activityindicatorios.html b/releases/next/docs/activityindicatorios.html index 60c03174b45..fab5b221641 100644 --- a/releases/next/docs/activityindicatorios.html +++ b/releases/next/docs/activityindicatorios.html @@ -127,7 +127,7 @@ exports.examples }, { title: 'Start/stop', - render: function(): ReactElement { + render: function(): ReactElement<any> { return <ToggleAnimatingActivityIndicator />; } }, diff --git a/releases/next/docs/alertios.html b/releases/next/docs/alertios.html index 14611912222..9b35a058ea5 100644 --- a/releases/next/docs/alertios.html +++ b/releases/next/docs/alertios.html @@ -54,7 +54,7 @@ exports.examples }, { title: 'Prompt Options', - render(): ReactElement { + render(): ReactElement<any> { return <PromptOptions />; } }, diff --git a/releases/next/docs/appstate.html b/releases/next/docs/appstate.html index 28b5091afe8..f9c3cdad218 100644 --- a/releases/next/docs/appstate.html +++ b/releases/next/docs/appstate.html @@ -89,11 +89,11 @@ exports.examples { title: 'Subscribed AppState:', description: 'This changes according to the current state, so you can only ever see it rendered as "active"', - render(): ReactElement { return <AppStateSubscription showCurrentOnly={true} />; } + render(): ReactElement<any> { return <AppStateSubscription showCurrentOnly={true} />; } }, { title: 'Previous states:', - render(): ReactElement { return <AppStateSubscription showCurrentOnly={false} />; } + render(): ReactElement<any> { return <AppStateSubscription showCurrentOnly={false} />; } }, ];
Next →

Run this example

React Native Versions

React Native is following a 2-week train release. Every two weeks, a Release Candidate (rc) branch is created off of master and the previous rc branch is being officially released.

masterDocs
0.27-rcDocsRelease Notes
(current) 0.26DocsRelease Notes
0.25DocsRelease Notes
0.24DocsRelease Notes
0.23DocsRelease Notes
0.22DocsRelease Notes
0.21DocsRelease Notes
0.20DocsRelease Notes
0.19DocsRelease Notes
0.18DocsRelease Notes

React Native Versions

React Native is following a 2-week train release. Every two weeks, a Release Candidate (rc) branch is created off of master and the previous rc branch is being officially released.

masterDocs
0.27-rcDocsRelease Notes
(current) 0.26DocsRelease Notes
0.25DocsRelease Notes
0.24DocsRelease Notes
0.23DocsRelease Notes
0.22DocsRelease Notes
0.21DocsRelease Notes
0.20DocsRelease Notes
0.19DocsRelease Notes
0.18DocsRelease Notes
\ No newline at end of file