2018-09-30 23:01:58 +01:00
---
id: 5a24bbe0dba28a8d3cbd4c5d
title: Create a Complex JSX Element
challengeType: 6
2019-08-05 09:17:33 -07:00
forumTopicId: 301382
2021-01-13 03:31:00 +01:00
dashedName: create-a-complex-jsx-element
2018-09-30 23:01:58 +01:00
---
2020-11-27 19:02:05 +01:00
# --description--
2018-09-30 23:01:58 +01:00
The last challenge was a simple example of JSX, but JSX can represent more complex HTML as well.
2020-11-27 19:02:05 +01:00
2018-09-30 23:01:58 +01:00
One important thing to know about nested JSX is that it must return a single element.
2020-11-27 19:02:05 +01:00
2018-09-30 23:01:58 +01:00
This one parent element would wrap all of the other levels of nested elements.
2020-11-27 19:02:05 +01:00
2018-09-30 23:01:58 +01:00
For instance, several JSX elements written as siblings with no parent wrapper element will not transpile.
2020-11-27 19:02:05 +01:00
2018-09-30 23:01:58 +01:00
Here's an example:
2020-11-27 19:02:05 +01:00
**Valid JSX:**
2019-05-14 05:01:32 -07:00
```jsx
< div >
< p > Paragraph One< / p >
< p > Paragraph Two< / p >
< p > Paragraph Three< / p >
< / div >
```
2020-11-27 19:02:05 +01:00
**Invalid JSX:**
2019-05-14 05:01:32 -07:00
```jsx
< p > Paragraph One< / p >
< p > Paragraph Two< / p >
< p > Paragraph Three< / p >
```
2020-11-27 19:02:05 +01:00
# --instructions--
Define a new constant `JSX` that renders a `div` which contains the following elements in order:
An `h1` , a `p` , and an unordered list that contains three `li` items. You can include any text you want within each element.
**Note:** When rendering multiple elements like this, you can wrap them all in parentheses, but it's not strictly required. Also notice this challenge uses a `div` tag to wrap all the child elements within a single parent element. If you remove the `div` , the JSX will no longer transpile. Keep this in mind, since it will also apply when you return JSX elements in React components.
# --hints--
The constant `JSX` should return a `div` element.
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
```js
assert(JSX.type === 'div');
2018-09-30 23:01:58 +01:00
```
2020-11-27 19:02:05 +01:00
The `div` should contain an `h1` tag as the first element.
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
```js
assert(JSX.props.children[0].type === 'h1');
```
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
The `div` should contain a `p` tag as the second element.
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
```js
assert(JSX.props.children[1].type === 'p');
```
2020-09-15 09:53:25 -07:00
2020-11-27 19:02:05 +01:00
The `div` should contain a `ul` tag as the third element.
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
```js
assert(JSX.props.children[2].type === 'ul');
2018-09-30 23:01:58 +01:00
```
2020-11-27 19:02:05 +01:00
The `ul` should contain three `li` elements.
```js
assert(
JSX.props.children
.filter((ele) => ele.type === 'ul')[0]
.props.children.filter((ele) => ele.type === 'li').length === 3
);
```
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
# --seed--
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
## --after-user-code--
2018-09-30 23:01:58 +01:00
2020-07-13 18:58:50 +02:00
```jsx
2018-10-20 21:02:47 +03:00
ReactDOM.render(JSX, document.getElementById('root'))
2018-09-30 23:01:58 +01:00
```
2020-11-27 19:02:05 +01:00
## --seed-contents--
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
```jsx
```
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
# --solutions--
2018-09-30 23:01:58 +01:00
2020-07-13 18:58:50 +02:00
```jsx
2018-09-30 23:01:58 +01:00
const JSX = (
< div >
< h1 > Hello JSX!< / h1 >
< p > Some info< / p >
< ul >
< li > An item< / li >
< li > Another item< / li >
< li > A third item< / li >
< / ul >
< / div > );
```