Unexpected template string expression no-template-curly-in-string in react
refference : https://eslint.org/docs/rules/no-template-curly-in-string
Issue: Unexpected template string expression no-template-curly-in-string
Reason : having (' ') or (" ")
fix :
instead (' ') use (` `)
Comments
Post a Comment