Created by: ArjunAce
While you can import an SVG as import { ReactComponent as someRandomName} from './logo.svg';
, it is worth noting that in order to use someRandomName
, we will have to PascalCase this component (say be creating a new reference as const SomePascalCasedName = someRandomName;
).
In summary, we have to ensure "PascalCasing" of the reference.
This change request just adds in that little piece of information.