-
Notifications
You must be signed in to change notification settings - Fork 101
Open
Description
I'm trying to convert HTML with my custom component named "Data". It looks like this:
<div>
<br/>
<Data name="foo"/>
<p>After</p>
</div>
As I result I get the following JSX in which the paragraph becomes the child of a Data tag and the tag itself is lowercased:
var MyTemplate = React.createClass({
render: function() {
return (
<div>
<br />
<data name="foo">
<p>After</p>
</data></div>
);
}
});
Is this an expected behaviour?
Metadata
Metadata
Assignees
Labels
No labels