prettier/tests/typescript_tsx/react.tsx

7 lines
145 B
TypeScript

const MyCoolList = ({ things }) =>
<ul>
{things.map(MyCoolThing)}
</ul>;
const MyCoolThing = ({ thingo }) => <li>{thingo}</li>;