duck-booking-tool-front/app/mocked-data.ts
Gergely Polonkai 8c0ecca40f Move duck list to a service
Signed-off-by: Gergely Polonkai <gergely@polonkai.eu>
2016-09-09 14:41:50 +02:00

8 lines
159 B
TypeScript

import { Duck } from "./models";
export const DUCKS: Duck[] = [
{ id: 1, color: 'yellow' },
{ id: 2, color: 'blue' },
{ id: 3, color: 'pink' }
];