import { StyleSheet, Text, View, TouchableWithoutFeedback } from 'react-native' import React from 'react' import Header from '../components/atoms/Header' import FeatherIcon from 'react-native-vector-icons/Feather' import MaterialIcon from 'react-native-vector-icons/MaterialIcons' import colors from '../theme/colors' const NewsDetailPage = ({ navigation }) => { return (
{navigation.goBack()}}> navigation.toggleDrawer()}>
) } export default NewsDetailPage const styles = StyleSheet.create({})