zepio/app/types/app-state.js

8 lines
105 B
JavaScript

// @flow
import type { TodoType } from './todo';
export type AppState = {
todos: Array<TodoType>,
};