← back to Beverlyhillsvideos App

app/(tabs)/guides.tsx

24 lines

import React from 'react';
import { StyleSheet } from 'react-native';
import { SafeAreaView } from 'react-native-safe-area-context';
import BHVWebView from '@/components/BHVWebView';
import { Colors } from '@/constants/Colors';

export default function GuidesScreen() {
  return (
    <SafeAreaView style={styles.container} edges={['top']}>
      <BHVWebView
        initialUrl="https://beverlyhillsvideos.com/restaurants.html"
        shareTitle="Beverly Hills Dining Guides"
      />
    </SafeAreaView>
  );
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    backgroundColor: Colors.cream,
  },
});