import React from 'react'; interface BillingToggleProps { billingPeriod: 'monthly' | 'annually'; onToggle: (period: 'monthly' | 'annually') => void; } const BillingToggle: React.FC = ({ billingPeriod, onToggle }) => { return (
{billingPeriod === 'annually' && ( 节省 20% )}
); }; export default BillingToggle;