Created
April 24, 2018 18:17
-
-
Save nerdic-coder/d7d7c16d28d6460406ca0c848ba0998c to your computer and use it in GitHub Desktop.
mock-heroes.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Hero } from '../../models/hero'; | |
export const HEROES: Hero[] = [ | |
{ id: 11, name: 'Mr. Nice' }, | |
{ id: 12, name: 'Narco' }, | |
{ id: 13, name: 'Bombasto' }, | |
{ id: 14, name: 'Celeritas' }, | |
{ id: 15, name: 'Magneta' }, | |
{ id: 16, name: 'RubberMan' }, | |
{ id: 17, name: 'Dynama' }, | |
{ id: 18, name: 'Dr IQ' }, | |
{ id: 19, name: 'Magma' }, | |
{ id: 20, name: 'Tornado' } | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment