import React from 'react'; import { Text, View } from '@/components/shared/Themed'; import styled from '@emotion/native'; import { useRouter } from 'expo-router'; import Button from '@/components/shared/Button'; import { HorizontalSpacer, VerticalSpacer } from '@/components/shared/Spacers'; import { i18n } from '@/app/i18n/i18n'; type FinishContentProps = { handleStart: () => void; }; const t = i18n.scoped('timer.finishContent'); export default function FinishContent({ handleStart }: FinishContentProps) { const router = useRouter(); return ( <>