You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
414 B
414 B
id | title | layout | permalink |
---|---|---|---|
self-closing-tag | Self-Closing Tag | docs | self-closing-tag.html |
Problem
You're getting a parsing error (unexpected token) from JSX.
Solution
One of the reasons might be that you didn't put a /
for your self-closing tags. <MyComponent />
is valid while <MyComponent>
isn't.
Discussion
Every React component can be self-closing where it makes sense: <div/>
.