You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bazarr/frontend/src/pages/Settings/Providers/index.tsx

16 lines
387 B

import { FunctionComponent } from "react";
import { Layout, Section } from "../components";
import { ProviderView } from "./components";
const SettingsProvidersView: FunctionComponent = () => {
return (
<Layout name="Providers">
<Section header="Providers">
<ProviderView></ProviderView>
</Section>
</Layout>
);
};
export default SettingsProvidersView;