import React from "react"; export const TodoFooter = (props: any) => { const items = props.todos.filter(todo => !todo.completed) return ( ); };