import { ICategory } from '../../constants/todo'

export interface TodoItem {
  data: string
  category: ICategory
}
