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 ( Open up App.js to start working on your app! ); } const Waku = () => { const node = createLightNode(); }; const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: '#fff', alignItems: 'center', justifyContent: 'center', }, });