We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
我的 js 文件夹 就 只有 hello.js (导出一个Hello 组件) ;app.js 就是render这个Hello组件
//hello.js
import React from 'react';
class Hello extends React.Component { render() { return div开始标签 Hello, {this.props.message}! div结束结束标签; } }
export default Hello;
//app.js import ReactDOM from 'react-dom';
import { Hello } from './hello.js';
ReactDOM.render( , document.getElementById('example') );
The text was updated successfully, but these errors were encountered:
No branches or pull requests
我的 js 文件夹 就 只有 hello.js (导出一个Hello 组件) ;app.js 就是render这个Hello组件
//hello.js
import React from 'react';
class Hello extends React.Component {
render() {
return div开始标签 Hello, {this.props.message}! div结束结束标签;
}
}
export default Hello;
//app.js
import ReactDOM from 'react-dom';
import { Hello } from './hello.js';
ReactDOM.render( , document.getElementById('example') );
The text was updated successfully, but these errors were encountered: