import React, { FC } from "react"; import { Text, TextStyle, View } from "react-native"; const descriptionStyle: TextStyle = { fontSize: parseInt("16%"), fontWeight: "bold", }; type Props = { time: string; }; export const DependTime: FC = ({ time }) => ( {time} );