admin管理员组文章数量:1341422
Why do I get the error Unterminated JSX contents
for the closing div
-element? What am I doing wrong?
export default class Search extends Component {
render() {
return (
<div class="ui icon input">
<input type="text" placeholder="Search...">
<i class="circular search link icon"></i>
</div>
);
}
}
Why do I get the error Unterminated JSX contents
for the closing div
-element? What am I doing wrong?
export default class Search extends Component {
render() {
return (
<div class="ui icon input">
<input type="text" placeholder="Search...">
<i class="circular search link icon"></i>
</div>
);
}
}
Share
Improve this question
asked Jan 29, 2017 at 17:04
user3142695user3142695
17.4k55 gold badges197 silver badges375 bronze badges
3 Answers
Reset to default 6Issue is, you forgot to close your input
element, in JSX
you have to close all the opened tags
properly like in XML
.
As per DOC:
JSX is a XML-like syntax extension to ECMAScript without any defined semantics. It's intended to be used by various preprocessors (transpilers) to transform these tokens into standard ECMAScript.
One more thing, class
is a reserved keyword, to apply any css
class instead of using the class
keyword, use className
.
Try this:
export default class Search extends Component {
render() {
return (
<div className="ui icon input">
<input type="text" placeholder="Search..."/>
<i className="circular search link icon"></i>
</div>
);
}
}
Your input
JSX element is not terminated, it is missing a closing tag.
And class
is a reserved name in Javascript. You need to use the className
prop instead.
<div className="ui icon input">
<input type="text" placeholder="Search..." />
<i className="circular search link icon"></i>
</div>
import React, { Component } from 'react';
class Counter extends Component {
render() {
return (
<div>
<h1>Hello World</h1>
<button>Increment</button>
</div>
);
}
}
export default Counter;
本文标签: javascriptReact Unterminated JSX contentsStack Overflow
版权声明:本文标题:javascript - React: Unterminated JSX contents - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743672965a2519839.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论