import React from "react"; | |
import "./SignFormStyles.css"; | |
function SignFormLink({ children, ...restProps }) { | |
return ( | |
<a className="sign-form-link" {...restProps}> | |
{children} | |
</a> | |
); | |
} | |
export default SignFormLink; | |
import React from "react"; | |
import "./SignFormStyles.css"; | |
function SignFormLink({ children, ...restProps }) { | |
return ( | |
<a className="sign-form-link" {...restProps}> | |
{children} | |
</a> | |
); | |
} | |
export default SignFormLink; | |