Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

FavoriteScreen.jsx 398B

1234567891011121314151617181920
  1. import React from 'react';
  2. import { View, Text, StyleSheet } from 'react-native';
  3. const FavoriteScreen = () => {
  4. return (
  5. <View style={styles.container}>
  6. <Text>Favorite</Text>
  7. </View>
  8. )
  9. }
  10. const styles = StyleSheet.create({
  11. container: {
  12. flex: 1,
  13. justifyContent: 'center',
  14. alignItems: 'center'
  15. }
  16. })
  17. export default FavoriteScreen;