'use client' import { Switch } from '@langgenius/dify-ui/switch' import * as React from 'react' import { useTranslation } from 'react-i18next' export enum PlanRange { monthly = 'monthly', yearly = 'yearly', } type PlanRangeSwitcherProps = { value: PlanRange onChange: (value: PlanRange) => void } function PlanRangeSwitcher({ value, onChange }: PlanRangeSwitcherProps) { const { t } = useTranslation() return (