Ramble-FE / app / (web) / contacts.tsx
contacts.tsx
Raw
import Constants from "expo-constants";
import Head from "expo-router/head";
import { Text, View } from "react-native";

export default function Contacts() {
    const appName = Constants.expoConfig?.name || 'App';

    return (
        <View
            style={{
                flex: 1,
                justifyContent: "center",
                alignItems: "center",
            }}
        >
            <Head>
                <title>{appName} - Contacts</title>
            </Head>
            <Text>Edit app/contacts.tsx to edit this screen.</Text>
        </View>
    );
}