import React from 'react' import {StyleSheet, View} from 'react-native' import {usePalette} from 'lib/hooks/usePalette' import {Text} from './text/Text' import {s} from 'lib/styles' export function WelcomeBanner() { const pal = usePalette('default') return ( Welcome to the private beta! Here are some recent posts. Follow their creators to build your feed. ) } const styles = StyleSheet.create({ container: { paddingTop: 30, paddingBottom: 26, paddingHorizontal: 20, borderTopWidth: 1, }, })