import React from 'react'; import MovieSettings from './MovieSettings'; import GeneralSettings from './GeneralSettings'; import style from './SettingsPage.module.css'; import GlobalInfos from '../../utils/GlobalInfos'; import {NavLink, Redirect, Route, Switch} from 'react-router-dom'; /** * The Settingspage handles all kinds of settings for the mediacenter * and is basically a wrapper for child-tabs */ class SettingsPage extends React.Component { render(): JSX.Element { const themestyle = GlobalInfos.getThemeStyle(); return (
Settings
General
Movies
{GlobalInfos.isTVShowEnabled() ? (
TV Shows
) : null}
{GlobalInfos.isTVShowEnabled() ? ( ) : null}
); } } export default SettingsPage;