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