init structure is completed
This commit is contained in:
1
src/components/css/index.css
Normal file
1
src/components/css/index.css
Normal file
@@ -0,0 +1 @@
|
||||
@import "../reg/css/index.css";
|
||||
12
src/components/reg/InputField.jsx
Normal file
12
src/components/reg/InputField.jsx
Normal file
@@ -0,0 +1,12 @@
|
||||
import React from 'react';
|
||||
|
||||
const InputField = (props) => {
|
||||
return (
|
||||
<input
|
||||
onChange={(e) => props.setValue(e.target.value)}
|
||||
value={props.value}
|
||||
/>
|
||||
);
|
||||
};
|
||||
|
||||
export default InputField;
|
||||
0
src/components/reg/css/index.css
Normal file
0
src/components/reg/css/index.css
Normal file
Reference in New Issue
Block a user