import { antiCaptchaOption } from "@/pages/Settings/Providers/options"; import { Anchor } from "@mantine/core"; import { FunctionComponent } from "react"; import { CollapseBox, Layout, Message, Password, Section, Selector, Text, } from "../components"; import { ProviderView } from "./components"; const SettingsProvidersView: FunctionComponent = () => { return (
(v === undefined ? "None" : v) }} options={antiCaptchaOption} > value === "anti-captcha"} > Anti-Captcha.com Link to subscribe value === "death-by-captcha"} > DeathByCaptcha.com Link to subscribe
); }; export default SettingsProvidersView;