1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- import { StatusBar } from 'expo-status-bar';
- import React from 'react';
- import { StyleSheet, Text, View } from 'react-native';
-
-
- export default function App() {
- return (
- <View style={styles.container}>
- <Text>"Hello"</Text>
- <StatusBar style="auto" />
- </View>
- );
- }
-
-
- // Import the functions you need from the SDKs you need
- // import { initializeApp } from "firebase/app";
- // TODO: Add SDKs for Firebase products that you want to use
- // https://firebase.google.com/docs/web/setup#available-libraries
-
- import firebase from "firebase";
-
- // Your web app's Firebase configuration
- const firebaseConfig = {
- apiKey: "AIzaSyDW-ABAQ3r_WR7C7WC_3VprL77NcAoitJI",
- authDomain: "freehand-d8ecd.firebaseapp.com",
- projectId: "freehand-d8ecd",
- storageBucket: "freehand-d8ecd.appspot.com",
- messagingSenderId: "48371388186",
- appId: "1:48371388186:web:9a5a4bf1218e17ac6326a3"
- };
-
- // Initialize Firebase
- const app = firebase.initializeApp(firebaseConfig);
-
-
- const styles = StyleSheet.create({
- container: {
- flex: 1,
- backgroundColor: '#fff',
- alignItems: 'center',
- justifyContent: 'center',
- },
- });
|