Sreenath N

Results 1 comments of Sreenath N

SVG import in `create-react-app` should be like [this](https://create-react-app.dev/docs/adding-images-fonts-and-files/#adding-svgs): ``` import { ReactComponent as Logo } from "../../assets/images/avatars/logo.svg" ``` In native it should be like this: ``` import Logo from "../../assets/images/avatars/logo.svg"...