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