feat: go to next episode countdown

This commit is contained in:
Fredrik Burmester
2024-12-10 20:37:58 +01:00
parent 0e1583c440
commit da1aa9f48c
3 changed files with 106 additions and 22 deletions

View File

@@ -3,7 +3,8 @@ import React, { PropsWithChildren, ReactNode, useMemo } from "react";
import { Text, TouchableOpacity, View } from "react-native";
import { Loader } from "./Loader";
interface ButtonProps extends React.ComponentProps<typeof TouchableOpacity> {
export interface ButtonProps
extends React.ComponentProps<typeof TouchableOpacity> {
onPress?: () => void;
className?: string;
textClassName?: string;