mirror of
https://github.com/zhigang1992/react-native-web.git
synced 2026-01-13 09:30:23 +08:00
Fix AsyncStorageExample
Comment out React Native's use of non-standard `done()` method, which isn't available on `async` functions even though it is polyfilled for the global Promise.
This commit is contained in:
@@ -29,7 +29,7 @@ class BasicStorageExample extends React.Component<{}, $FlowFixMeState> {
|
||||
};
|
||||
|
||||
componentDidMount() {
|
||||
this._loadInitialState().done();
|
||||
this._loadInitialState()//.done();
|
||||
}
|
||||
|
||||
_loadInitialState = async () => {
|
||||
|
||||
Reference in New Issue
Block a user