import { View } from "react-native" import { Text } from "react-native-paper" import { SafeAreaView } from "react-native-safe-area-context" import { ExternalLink } from "@/presentation/react-native/ui/ExternalLink" import { getVersion } from "@/utils/version" export interface AboutProps { actionButton: React.ReactNode } export const About: React.FC = (props) => { const { actionButton } = props const version = getVersion() return ( Habits Tracker To perform at work and in everyday life. v{version} Université de Strasbourg BUT Informatique - IUT Robert Schuman P61 Mobile Development {actionButton} ) }