// mock-todos.ts
import {Todo} from './todo';
export const TODOS: Todo[] = [
{
id: 1,
title: 'Coding',
description: 'Write some code.',
},
{
id: 2,
title: 'Eating',
description: 'Eat some food.',
},
{
id: 3,
title: 'Sleeping',
description: 'Want some sleep.',
},
]