Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update 03-PowerOfJSX.md #41

Merged
merged 1 commit into from
Jun 16, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/tutorial/03-PowerOfJSX.md
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@ For example lets imagine we want to display a company profile information and a
```jsx
function CompanyProfile(props) {
//ticker and companyProfileInfo stored in a variable
const ticker = 'APPL';
const ticker = 'AAPL';
const companyProfileInfo = {
'Company Name': 'Apple Inc.',
'Exchange': 'Nasdaq',
@@ -38,7 +38,7 @@ The HTML output of the above Component when it's rendered will be:

```html
<div>
<div>Profile of: APPL</div>
<div>Profile of: AAPL</div>
<div>
<div>Company Name: Apple Inc.</div>
<div>Exchange: Nasdaq</div>
@@ -49,7 +49,7 @@ The HTML output of the above Component when it's rendered will be:
</div>
```

Well that's a handful, so let's review what's happening here. We have a `ticker` variable assigned to a value `APPL` and an object `companyProfileInfo` that has company profile. Inside the JSX (inside the `return` statement) we have a `div` enclosing everything. In JSX, **a component must return one and only one enclosing tag**. That tag can have as many children as it wants.
Well that's a handful, so let's review what's happening here. We have a `ticker` variable assigned to a value `AAPL` and an object `companyProfileInfo` that has company profile. Inside the JSX (inside the `return` statement) we have a `div` enclosing everything. In JSX, **a component must return one and only one enclosing tag**. That tag can have as many children as it wants.
```jsx
// ❌ This is illegal in React since the return has more than one tag.
return (