import React, { useState } from "react"; import loginThumb from "../../../assets/images/auth-thumb.svg"; import googleLogo from "../../../assets/images/google-logo.svg"; import logo from "../../../assets/images/light-logo.png"; //logo-1.svg"; import titleShape from "../../../assets/images/shape/title-shape-two.svg"; import InputCom from "../../Helpers/Inputs/InputCom"; export default function SignUp() { const [checked, setValue] = useState(false); const rememberMe = () => { setValue(!checked); }; return ( <>
logo
{/*login-thumb */}

Welcome to myFit

Create Account

shape
I agree all terms and condition in myFit.

Already have account? Log In

); }