This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
outline/app/components/Editor/components/ListItem.js

28 lines
517 B
JavaScript

// @flow
import React from 'react';
import type { props } from 'slate-prop-types';
import TodoItem from './TodoItem';
export default function ListItem({
children,
node,
attributes,
...props
}: props) {
const checked = node.data.get('checked');
if (checked !== undefined) {
return (
<TodoItem
checked={checked}
node={node}
attributes={attributes}
{...props}
>
{children}
</TodoItem>
);
}
return <li {...attributes}>{children}</li>;
}