import React, { useMemo } from "react"; import { View } from "react-native"; import { useTheme } from "@react-navigation/native"; import Text from "@shared-components/text-wrapper/TextWrapper"; import createStyles from "./NotificationScreen.style"; const ProfileScreen: React.FC = () => { const theme = useTheme(); const { colors } = theme; const styles = useMemo(() => createStyles(theme), [theme]); return ( Notification ); }; export default ProfileScreen;