import { Checkbox } from '@/components/ui/checkbox'; import { Text } from '@/components/ui/text'; import { View } from '@/components/ui/view'; import React, { useState } from 'react'; export function CheckboxWithError() { const [checked, setChecked] = useState(false); return ( {!checked && ( You must accept the terms to continue )} ); }