#2121·esprima

出现意外的语法错误

作者: Terminou创建于 2022年11月15日更新于 2022年11月15日

/**

  • 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'; import load from 'absoluteLoad';

export default class extends Component { static propTypes = { onReady: PropTypes.func.isRequired, };

constructor(props) { super(props); this.state = { users: [] }; }

async componentDidMount() { const users = load(); this.setState({ users }); }

componentDidUpdate() { this.props.onReady(); }

render() { return (

{this.state.users.map(user => (
{user.name}
))}
); } }