UNPKG

@atlaskit/renderer

Version:
18 lines 515 B
import React, { PureComponent, Children } from 'react'; import { TaskList as AkTaskList } from '@atlaskit/task-decision'; // Ignored via go/ees005 // eslint-disable-next-line @repo/internal/react/no-class-components export default class TaskList extends PureComponent { render() { const { children, localId } = this.props; if (Children.count(children) === 0) { return null; } return /*#__PURE__*/React.createElement(AkTaskList, { listId: localId }, children); } }