Skip to content
New issue

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

npm start 正确后 打开 http://localhost:8080/webpack-dev-server/ 显示APP ready 并不是我要的hello world #8

Open
adu8419 opened this issue Jul 4, 2016 · 0 comments

Comments

@adu8419
Copy link

adu8419 commented Jul 4, 2016

我的 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') );

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant