import React from 'react'; import { Text, View } from 'react-native'; import { Tasks as TasksProps } from '@rocket.chat/message-parser'; import Inline from './Inline'; import styles from '../styles'; import { themes } from '../../../lib/constants'; import { useTheme } from '../../../theme'; interface ITasksProps { value: TasksProps['value']; } const TaskList = ({ value = [] }: ITasksProps) => { const { theme } = useTheme(); return ( {value.map(item => ( {item.status ? '- [x] ' : '- [ ] '} ))} ); }; export default TaskList;