How Export and Import a module
/* Export file */ export class Ingredient{ /*Your code here*/ } /* Import file */ import { Ingredient } from '../shared/ingredient.mode';