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

changes done

parent e14f1c2a
Branches
No related tags found
No related merge requests found
import React from "react"; import React from "react";
import "./inputs.module.scss"; import Style from "./inputs.module.scss";
function Inputs(props) { function Inputs(props) {
...@@ -8,21 +8,21 @@ function Inputs(props) { ...@@ -8,21 +8,21 @@ function Inputs(props) {
type, type,
placeholder, placeholder,
CustomClass, CustomClass,
onChange, onChangeInput,
} = props; } = props;
return ( return (
<div className="input-container"> <div >
<div className="inputClass" >
<input <input
value={value} value={value}
type={type} type={type}
className={CustomClass} className={CustomClass}
placeholder={placeholder} placeholder={placeholder}
onChange={onChange} onChange={onChangeInput}
/> />
</div>
</div> </div>
); );
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment