import { Image, Pressable, ScrollView, StyleSheet, Text, View } from 'react-native'
import React from 'react'
import { AntDesign } from '@expo/vector-icons';
const index = () => {
const todo = [
];
return (
<>
All
Work
Personal
{todo?.length > 0 ? (
) : (
Hooray! No task for today
Add task
)}
>
)
}
export default index
const styles = StyleSheet.create({})