chore: minor tweaks

This commit is contained in:
abhijithvijayan 2020-11-15 15:31:10 +05:30
parent 29a43e451d
commit 3cd19ad983
4 changed files with 9 additions and 7 deletions

View File

@ -1,4 +1,4 @@
import React from 'react';
import * as React from 'react';
import './styles.scss';
@ -7,12 +7,12 @@ const Options: React.FC = () => {
<div>
<form>
<p>
<label htmlFor="name">Name</label>
<label htmlFor="username">Your Name</label>
<br />
<input
type="text"
id="name"
name="name"
id="username"
name="username"
spellCheck="false"
autoComplete="off"
required
@ -23,6 +23,8 @@ const Options: React.FC = () => {
<input type="checkbox" name="logging" /> Show the features enabled
on each page in the console
</label>
<p>cool cool cool</p>
</p>
</form>
</div>

View File

@ -1,4 +1,4 @@
import React from 'react';
import * as React from 'react';
import ReactDOM from 'react-dom';
import Options from './Options';

View File

@ -1,4 +1,4 @@
import React from 'react';
import * as React from 'react';
import {browser, Tabs} from 'webextension-polyfill-ts';
import './styles.scss';

View File

@ -1,4 +1,4 @@
import React from 'react';
import * as React from 'react';
import ReactDOM from 'react-dom';
import Popup from './Popup';