mirror of
https://github.com/reactjs/react.dev.git
synced 2026-02-24 20:53:08 +00:00
15 lines
316 B
JavaScript
15 lines
316 B
JavaScript
var HELLO_COMPONENT = `
|
|
var HelloMessage = React.createClass({
|
|
render: function() {
|
|
return <div>Hello {this.props.name}</div>;
|
|
}
|
|
});
|
|
|
|
ReactDOM.render(<HelloMessage name="John" />, mountNode);
|
|
`;
|
|
|
|
ReactDOM.render(
|
|
<ReactPlayground codeText={HELLO_COMPONENT} />,
|
|
document.getElementById('helloExample')
|
|
);
|