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

23 lines
470 B
JavaScript

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