Sid Gifari File Manager
🏠 Root
/
home2
/
meumer25
/
netodolele.com.br
/
wp-content
/
plugins
/
envato-elements
/
src
/
js
/
react
/
components
/
Forms
/
Editing: InputWithButton.jsx
import React from 'react' import styles from './InputWithButton.module.scss' const InputWithButton = ({ Input, Button, instructions, errorMessage }) => ( <div className={styles.wrapper}> <div className={styles.formWrapper}> <div className={styles.inputWrapper}> {Input} </div> <div className={styles.buttonWrapper}> {Button} </div> </div> {errorMessage ? ( <div className={styles.errors}> {errorMessage} </div> ) : null} {instructions ? ( <div className={styles.instructions}> {instructions} </div> ) : null} </div> ) export default InputWithButton
Save
Cancel