How can I import a file with special characters in it's name in ES6?
I can
import { tomorrow} from 'react-syntax-highlighter/dist/esm/styles/hljs';
but I can't:
import { tomorrow-night} from 'react-syntax-highlighter/dist/esm/styles/hljs';
How can I import a file with special characters in it's name in ES6?
I can
import { tomorrow} from 'react-syntax-highlighter/dist/esm/styles/hljs';
but I can't:
import { tomorrow-night} from 'react-syntax-highlighter/dist/esm/styles/hljs';
JavaScript do not support hyphens in variable name. They are reserved for subtractions.