import React from 'react'; import useSWR from 'swr'; import LoadingSpinner from '../Common/LoadingSpinner'; import type { MainSettings } from '../../../server/lib/settings'; import CopyButton from './CopyButton'; const SettingsMain: React.FC = () => { const { data, error } = useSWR('/api/v1/settings/main'); if (!data && !error) { return ; } return ( <>

General Settings

These are settings related to general Overseerr configuration.

); }; export default SettingsMain;