Sorry if I’m a noob, but I have this structure in my project:
src ==> pages ==> HeroesList;
src==> model ==> Hero;
How can I import my hero in the heroesList?
I tried like this:
import { Hero } from './model/hero/hero';
OR
import { Hero } from '../model/hero/hero';
OR
import { Hero } from '../hero/hero';
OR
import { Hero } from '../hero';
OR
import { Hero } from '../model/hero';