import { Switch } from '@/components/ui/switch'; import { View } from '@/components/ui/view'; import React, { useState } from 'react'; export function SwitchError() { const [isEnabled, setIsEnabled] = useState(false); return ( {}} error='You must accept the privacy policy' /> ); }