diff --git a/app/components/Editor/components/ListItem.js b/app/components/Editor/components/ListItem.js index defea91d..0c151765 100644 --- a/app/components/Editor/components/ListItem.js +++ b/app/components/Editor/components/ListItem.js @@ -3,12 +3,22 @@ import React from 'react'; import type { Props } from '../types'; import TodoItem from './TodoItem'; -export default function ListItem({ children, node, attributes }: Props) { +export default function ListItem({ + children, + node, + attributes, + ...props +}: Props) { const checked = node.data.get('checked'); if (checked !== undefined) { return ( - + {children} );