From 93e3f5abf2ba1f18af8fe701803581f7f57a5d9b Mon Sep 17 00:00:00 2001 From: James Hunter Date: Tue, 15 Jan 2019 17:15:27 -0500 Subject: [PATCH] added hints, updated formatting (#33488) --- .../react/create-a-complex-jsx-element/index.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/guide/english/certifications/front-end-libraries/react/create-a-complex-jsx-element/index.md b/guide/english/certifications/front-end-libraries/react/create-a-complex-jsx-element/index.md index 0ae0e5c088..acbe83354b 100644 --- a/guide/english/certifications/front-end-libraries/react/create-a-complex-jsx-element/index.md +++ b/guide/english/certifications/front-end-libraries/react/create-a-complex-jsx-element/index.md @@ -1,9 +1,13 @@ --- title: Create a Complex JSX Element --- -## Create a Complex JSX Element +# Create a Complex JSX Element -Hint: +## Hint +- nested JSX must return a single, top level element +- Ensure your solution has a parent `div` containing an `h1`, a `p`, and an unordered list (`ul`) that contains three `li` items + +## Solution ```html const JSX =