2020-06-06 11:39:55 +05:30

33 lines
638 B
JavaScript

import React from 'react';
import './styles.scss';
const Options = () => {
return (
<div>
<form>
<p>
<label htmlFor="name">Name</label>
<br />
<input
type="text"
id="name"
name="name"
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;