chore: minor tweaks

This commit is contained in:
abhijithvijayan 2020-11-15 15:58:06 +05:30
parent 762b650b8c
commit 2233c30291
4 changed files with 7 additions and 7 deletions

View File

@ -1,4 +1,4 @@
import React from 'react'; import * as React from 'react';
import './styles.scss'; import './styles.scss';
@ -7,12 +7,12 @@ const Options = () => {
<div> <div>
<form> <form>
<p> <p>
<label htmlFor="name">Name</label> <label htmlFor="username">Your Name</label>
<br /> <br />
<input <input
type="text" type="text"
id="name" id="username"
name="name" name="username"
spellCheck="false" spellCheck="false"
autoComplete="off" autoComplete="off"
required required

View File

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

View File

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

View File

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