mirror of
https://github.com/rjNemo/ticket_manager
synced 2026-06-09 10:16:39 +00:00
12 lines
262 B
TypeScript
12 lines
262 B
TypeScript
import React, { FC } from "react";
|
|
|
|
const InputField: FC = () => {
|
|
return (
|
|
<div className="input-field">
|
|
<input id="email" type="text" className="validate" />
|
|
<label htmlFor="email">Email</label>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default InputField;
|