/** * © 2022 WavePlay */ import { StyleSheet, Text, View } from 'react-native' export const Default404 = () => { return ( 404 This page could not be found. ) } export const Default500 = () => { return ( 500 Internal Server Error. ) } const styles = StyleSheet.create({ container: { flex: 1, display: 'flex', flexDirection: 'row', justifyContent: 'center', alignItems: 'center', backgroundColor: 'white' }, pipe: { width: 1, height: 32, backgroundColor: 'black', opacity: 0.4, marginLeft: 16, marginRight: 16 }, statusCode: { color: 'black', fontSize: 24, fontWeight: '500' }, text: { color: 'black', fontSize: 16, fontWeight: '400' } })