fix: refactor

This commit is contained in:
Fredrik Burmester
2024-08-16 19:11:06 +02:00
parent 349fc1f21e
commit d15d02d61d
5 changed files with 107 additions and 162 deletions

View File

@@ -1,11 +1,9 @@
import { Button } from "./Button";
import { BaseItemDto } from "@jellyfin/sdk/lib/generated-client/models";
import { Feather, Ionicons } from "@expo/vector-icons";
import { runtimeTicksToMinutes } from "@/utils/time";
import { useActionSheet } from "@expo/react-native-action-sheet";
import { Feather, Ionicons } from "@expo/vector-icons";
import { BaseItemDto } from "@jellyfin/sdk/lib/generated-client/models";
import { View } from "react-native";
import { useAtom } from "jotai";
import { playingAtom } from "./CurrentlyPlayingBar";
import { Button } from "./Button";
interface Props extends React.ComponentProps<typeof Button> {
item: BaseItemDto;