swc/crates/swc_estree_compat/tests/fixtures/jsx-props/input.jsx

5 lines
101 B
React
Raw Normal View History

const App = () => {
let name = "thing";
return <div id="app" className={ "a " + name } />
};