atom-beautify/examples/simple-jsbeautifyrc/tsx/expected/test.tsx

12 lines
232 B
TypeScript
Raw Normal View History

class Test extends React.Component<Foo> {
render() {
return (
2018-02-06 12:54:44 -07:00
<div className="class">
<h2 className="anotherClass">
{this.foo.bar}
</h2>
{this.foo.bar.children}
</div>
);
}
2018-02-06 12:54:44 -07:00
}