Skip to content
Snippets Groups Projects
Commit 755adb00 authored by Puneeth Kharvi's avatar Puneeth Kharvi
Browse files

input task completed

parent ee5d99b6
No related branches found
No related tags found
No related merge requests found
import React from "react";
import "./inputs.module.scss";
function Inputs(props) {
const {
value,
type,
placeholder,
CustomClass,
onChange,
} = props;
return (
<div className="input-container">
<div className="inputClass" >
<input
value={value}
type={type}
className={CustomClass}
placeholder={placeholder}
onChange={onChange}
/>
</div>
</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