convert to components
This commit is contained in:
9
frontend/src/app/components/fields/textfield.jsx
Normal file
9
frontend/src/app/components/fields/textfield.jsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import React from "react";
|
||||
import styles from "./styles.module.css";
|
||||
const TextField = ({ placeHolder }) => {
|
||||
return (
|
||||
<input className={styles.input} type="text" placeholder={placeHolder} />
|
||||
);
|
||||
};
|
||||
|
||||
export default TextField;
|
||||
Reference in New Issue
Block a user