UNPKG

@trycourier/courier-react-native

Version:

Inbox, Push Notifications, and Preferences for React Native

12 lines (11 loc) 445 B
import { NavigationContainer } from '@react-navigation/native'; import React from 'react'; import Home from './Home'; import Toast from 'react-native-toast-message'; import { Poke } from './Poke'; export default function App() { return (React.createElement(Poke, { initialEnabled: false }, React.createElement(NavigationContainer, null, React.createElement(Home, null), React.createElement(Toast, null)))); }