mirror of
https://github.com/abhijithvijayan/web-extension-starter.git
synced 2025-10-07 07:22:37 +02:00
35 lines
703 B
TypeScript
35 lines
703 B
TypeScript
import * as React from 'react';
|
|
|
|
import './styles.scss';
|
|
|
|
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>cool cool cool</p>
|
|
</p>
|
|
</form>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Options;
|