import React from 'react' import { ThemedView } from '@/components/ThemedView' import { ThemedText } from '@/components/ThemedText' import { Platform } from 'react-native' const NavBar = () => { if (Platform.OS === 'web') return null return ( 💬 Chat{'\n'} ) } export default NavBar