how does typescript introduce pictures?
import img from "../../images/shop-list/shop-list-0.jpeg"
Cannot find module "../../images/shop-list/shop-list-0.jpeg".
require
const img = require("../../images/shop-list/shop-list-0.jpeg")
require statement not part of an import statement
Stack Overflow
declare function require(string): string;
variable name clashes with keyword/type
I don"t understand