react_native/todo_app/app/(tabs)/calendar/index.js
2024-07-16 17:34:30 -05:00

14 lines
No EOL
227 B
JavaScript

import { StyleSheet, Text, View } from 'react-native'
import React from 'react'
const index = () => {
return (
<View>
<Text>index</Text>
</View>
)
}
export default index
const styles = StyleSheet.create({})