I want to write this code:
<script type="text/jsx">
var MessageBox = React.createClass({
render: function() {
return <div>Hello World</div>
}
});
</script>
When I typing </
in line return <div>Hello World</
Sublime auto-closes tag to </script>
instead of </div>
.
This is very annoying while coding using JSX style (react.js)
Is there any way to fix this?