pablocattaneo
6/8/2017 - 12:37 PM

How Export and Import a module

How Export and Import a module

/* Export file */

export class Ingredient{
 /*Your code here*/
}

/* Import file */
import { Ingredient } from '../shared/ingredient.mode';