-
Notifications
You must be signed in to change notification settings - Fork 1
/
App.js
47 lines (42 loc) · 1.07 KB
/
App.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import { StatusBar } from "expo-status-bar";
import { useEffect, useRef } from "react";
import { StyleSheet, Text, View, TouchableHighlight } from "react-native";
import Elevio from "./Elevio";
const ElevioAccountId = "58f572246b738";
const ElevioUser = {
email: "[email protected]",
};
export default function App() {
const elevioRef = useRef();
useEffect(() => {
elevioRef.current.initialize(ElevioAccountId, ElevioUser);
}, []);
return (
<View style={styles.container}>
<Elevio ref={elevioRef} />
<Text>Open up App.js to start working on your app!</Text>
<TouchableHighlight
style={styles.elevioButton}
onPress={() => {
elevioRef.current.show("page");
}}
>
<Text>Elevio</Text>
</TouchableHighlight>
<StatusBar style="auto" />
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: "#fff",
alignItems: "center",
justifyContent: "center",
},
elevioButton: {
marginTop: 20,
padding: 15,
backgroundColor: "lightblue",
},
});