Transforms JSX element to a string literal.
npm install babel-plugin-heredoc



Input:
``js`
const foo =
I am a string!
Output:
`js``
const foo = '\n
I am a string!\n
';