mirror of
https://github.com/zhigang1992/create-react-app.git
synced 2026-04-22 20:39:05 +08:00
57 lines
1.1 KiB
JavaScript
57 lines
1.1 KiB
JavaScript
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
import React, { Component } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
|
|
async function load() {
|
|
return [
|
|
{ id: 1, name: '1' },
|
|
{ id: 2, name: '2' },
|
|
{ id: 3, name: '3' },
|
|
{ id: 4, name: '4' },
|
|
];
|
|
}
|
|
|
|
/* eslint-disable */
|
|
// Regression test for https://github.com/facebookincubator/create-react-app/issues/3055
|
|
const x = async (
|
|
/* prettier-ignore */
|
|
y: void
|
|
) => {
|
|
const z = await y;
|
|
};
|
|
/* eslint-enable */
|
|
|
|
export default class extends Component {
|
|
static propTypes = {
|
|
onReady: PropTypes.func.isRequired,
|
|
};
|
|
|
|
constructor(props) {
|
|
super(props);
|
|
this.state = { users: [] };
|
|
}
|
|
|
|
async componentDidMount() {
|
|
const users = await load();
|
|
this.setState({ users });
|
|
}
|
|
|
|
componentDidUpdate() {
|
|
this.props.onReady();
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<div id="feature-async-await">
|
|
{this.state.users.map(user => <div key={user.id}>{user.name}</div>)}
|
|
</div>
|
|
);
|
|
}
|
|
}
|