import React from 'react' import styles from './InputWithButton.module.scss' const InputWithButton = ({ Input, Button, instructions, errorMessage }) => (
{Input}
{Button}
{errorMessage ? (
{errorMessage}
) : null} {instructions ? (
{instructions}
) : null}
) export default InputWithButton