mirror of
https://github.com/rjNemo/ticket_manager
synced 2026-06-09 18:26:40 +00:00
10 lines
257 B
TypeScript
10 lines
257 B
TypeScript
import React, { FC } from "react";
|
|
|
|
export const PasswordField: FC = () => {
|
|
return (
|
|
<div className="input-field">
|
|
<input id="password" type="password" className="validate" />
|
|
<label htmlFor="password">Password</label>
|
|
</div>
|
|
);
|
|
};
|