Skip to content

Instantly share code, notes, and snippets.

@orlando-c-h
Last active November 2, 2017 21:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save orlando-c-h/26c38cdacccf2dd23d589ddcc6a09b85 to your computer and use it in GitHub Desktop.
Save orlando-c-h/26c38cdacccf2dd23d589ddcc6a09b85 to your computer and use it in GitHub Desktop.
import {Todo} from '../app/to-do/to-do';
export const TODO_ITEMS: Todo[] = [
{
id: 1,
name: 'Lunch with Lily',
notes: 'sea food',
due: new Date(new Date().setDate(new Date().getDate() + 4)),
done: false
}, {
id: 2,
name: 'Visit N. Hirano',
notes: 'confirm the meeting ahead of time',
due: new Date(new Date().setDate(new Date().getDate() + 5)),
done: false
}, {
id: 3,
name: 'Do the groceries',
notes: '',
due: new Date(new Date().setDate(new Date().getDate() - 1)),
done: true
}
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment