import { useSettings } from "@/utils/atoms/settings"; import { useRouter } from "expo-router"; import React from "react"; import { View } from "react-native"; import { ListGroup } from "../list/ListGroup"; import { ListItem } from "../list/ListItem"; export const PluginSettings = () => { const [settings, updateSettings] = useSettings(); const router = useRouter(); if (!settings) return null; return ( router.push("/settings/jellyseerr/page")} title={"Jellyseerr"} showArrow /> router.push("/settings/marlin-search/page")} title="Marlin Search" showArrow /> router.push("/settings/popular-lists/page")} title="Popular Lists" showArrow /> ); };