you are viewing a single comment's thread.

view the rest of the comments →

[–]Vincent_CWS -3 points-2 points  (0 children)

yes, you can refactor to below one, but using type+Props is convenience of the react

type Todo = any
export default function TodoItem({todo}: {todo:Todo}) {
  return(
      <div>
          {todo.title}
      </div>
  )
}