Skip to content
Snippets Groups Projects
Commit af30e2c6 authored by Sujata Murgod's avatar Sujata Murgod
Browse files

Merge branch 'feture/puneeth/input_task' into 'development'

Feture/puneeth/input task

See merge request sujatamurgod/sample_argon!6
parents df9c2148 9ad9a7b1
Branches
No related tags found
No related merge requests found
import React from "react";
import Style from "./inputs.module.scss";
function Inputs(props) {
const {
value,
type,
placeholder,
CustomClass,
onChangeInput,
} = props;
return (
<div >
<input
value={value}
type={type}
className={CustomClass}
placeholder={placeholder}
onChange={onChangeInput}
/>
</div>
);
}
export default Inputs;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment