here is an example of code inside of my .js file after gg=G command:
class ChannelSection extends React.Component{
render(){
return(
<div>
<ChannelList channels={channels} />
<ChannelForm />
</div>
)
}
}
As you can see html tags have the same indent. I wish it would be like in html files - nested blocks indented further. Some plugin that can help?
Again, I need to indent ONLY HTML tags in .js file, not in .html file.