当元素没有子元素时,它可以自动关闭:
<Something something="123" />
否则,它需要像普通html标记一样使用一个打开部分:
<Something>
还有一个结尾:
</Something>
edit: function( props ) {
return(
<Form
method="get"
className="search-form"
>
<PlainText
title="search box"
placeholder="Search"
className="search-field"
type="text"
name="s"
readonly="true"
/>
<PlainText
type="hidden"
name="type"
value="media"
/>
<Button
type="submit"
title="search site"
className="search-submit"
value="›"
disabled="disabled"
/>
</Form>
);
},