mirror of
https://github.com/reactjs/react.dev.git
synced 2026-02-23 20:23:08 +00:00
16 lines
276 B
JavaScript
16 lines
276 B
JavaScript
function Welcome(props) {
|
|
return <h1>Hello, {props.name}</h1>;
|
|
}
|
|
|
|
function App() {
|
|
return (
|
|
<div>
|
|
<Welcome name="Sara" />
|
|
<Welcome name="Cahal" />
|
|
<Welcome name="Edite" />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
ReactDOM.render(<App />, document.getElementById('root'));
|