// foo.jsx
const Test = () => (
<div
// It's a test
id="test"
/>
);
Blockman shows the following error when it tries to parse the above code:
Error: invalid syntax at line 3 col 9: // It's a test ^
Replacing the line with // '' and // "" stops the error, whereas // ' and // """ doesn't.
Related: #127