swc/crates/swc_estree_compat/tests/fixtures/jsx-and-expr/input.jsx

7 lines
101 B
React
Raw Normal View History

const App = () => {
let t = true;
return <div>
{ t && <span>t</span> }
</div>
};