Abhijith Vijayan [FLUXON] 692a97d2c0 feat: initial rewrite
2025-06-23 02:22:09 +05:30

31 lines
645 B
TypeScript

import * as React from 'react';
const Options: React.FC = () => {
return (
<div>
<form>
<p>
<label htmlFor="username">Your Name</label>
<br />
<input
type="text"
id="username"
name="username"
spellCheck="false"
autoComplete="off"
required
/>
</p>
<p>
<label htmlFor="logging">
<input type="checkbox" name="logging" /> Show the features enabled
on each page in the console
</label>
</p>
</form>
</div>
);
};
export default Options;