mirror of
https://github.com/logos-messaging/lab.waku.org.git
synced 2026-01-12 10:43:06 +00:00
30 lines
639 B
JavaScript
30 lines
639 B
JavaScript
import 'event-target-polyfill';
|
|
import 'text-encoding-polyfill';
|
|
import { StatusBar } from 'expo-status-bar';
|
|
import { StyleSheet, Text, View } from 'react-native';
|
|
|
|
import { createLightNode } from "@waku/sdk";
|
|
|
|
export default function App() {
|
|
return (
|
|
<View style={styles.container}>
|
|
<Text>Open up App.js to start working on your app!</Text>
|
|
<StatusBar style="auto" />
|
|
<Waku />
|
|
</View>
|
|
);
|
|
}
|
|
|
|
const Waku = () => {
|
|
const node = createLightNode();
|
|
};
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
backgroundColor: '#fff',
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
},
|
|
});
|