'Logo' is declared but its value is never read.ts(6133)
Cannot find module '../images/Logo.svg' or its corresponding type declarations
declare module '*.svg' {
const content: any;
export default content;
}
"include": [ "src", "src/custom.d.ts" ]
https://stackoverflow.com/questions/44717164/unable-to-import-svg-files-in-typescript
declare module "*.svg" {
const content: React.FunctionComponent<React.SVGAttributes>;
export default content;
}
any보단 이게 좋아보입니다.
출처 : stack overflow