wahanegi/vibereport

View on GitHub
app/javascript/components/UI/Input.js

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react';

const Input = (props) => {
    return (
        <label>
            {props.label}
        <input
            type={"text" || props.type}
            placeholder={props.placeholder}
        />
        </label>
    );
};

export default Input;