import React from "react"; import Link from "next/link"; import Checkbox from "@/components/Low/Checkbox"; const useAcceptedTerms = () => { const [acceptedTerms, setAcceptedTerms] = React.useState(false); const renderCheckbox = () => ( I agree to the {" "} Terms and Conditions {" "} and {" "} Privacy Policy ); return {acceptedTerms, renderCheckbox}; }; export default useAcceptedTerms;