Are there people here who succeeded using styled-jsx with meteor?
As soon as I add jsx to a <style> element in a react component, the meteor builder is stuck on:
Processing files with ecmascript (for... -
const Comment = ({ content }) => (
<div>
<div className='comment'>
{content}
</div>
<style jsx>{`
.comment { border: 3px solid red; }
</style>
</div>
);