Files
react-from-zero/08-nested-components.html
2018-09-27 13:52:44 +02:00

45 lines
1.1 KiB
HTML

<!doctype html>
<title>08 Nested Components - React From Zero</title>
<script src="https://unpkg.com/react@16.4.0/umd/react.development.js"></script>
<script src="https://unpkg.com/react-dom@16.4.0/umd/react-dom.development.js"></script>
<script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>
<div id="app"></div>
<script type="text/babel">
// Components, like elements, can be nested
// for this, the children property is used inside the component
// This component just wraps its children in an <li> element
function Item(props) {
return <li>{props.children}</li>;
}
// This component wraps its children into an <ul> element
function List(props) {
return <ul>{props.children}</ul>;
}
// If the <List> is created without children it gets a default child
List.defaultProps = {
children: <Item>Empty</Item>
};
// now we render two <List>s, without and with Items
var reactElement = (
<div>
<List />
<List>
<Item>First</Item>
<Item>Second</Item>
<Item>Third</Item>
</List>
</div>
);
var renderTarget = document.getElementById("app");
ReactDOM.render(reactElement, renderTarget);
</script>