From 3cd19ad98367a9ae8046dba8b3fc3c7366d6b9fa Mon Sep 17 00:00:00 2001
From: abhijithvijayan <34790378+abhijithvijayan@users.noreply.github.com>
Date: Sun, 15 Nov 2020 15:31:10 +0530
Subject: [PATCH] chore: minor tweaks
---
source/Options/Options.tsx | 10 ++++++----
source/Options/index.tsx | 2 +-
source/Popup/Popup.tsx | 2 +-
source/Popup/index.tsx | 2 +-
4 files changed, 9 insertions(+), 7 deletions(-)
diff --git a/source/Options/Options.tsx b/source/Options/Options.tsx
index 7ad0fae..20babe9 100644
--- a/source/Options/Options.tsx
+++ b/source/Options/Options.tsx
@@ -1,4 +1,4 @@
-import React from 'react';
+import * as React from 'react';
import './styles.scss';
@@ -7,12 +7,12 @@ const Options: React.FC = () => {
diff --git a/source/Options/index.tsx b/source/Options/index.tsx
index 1d8bed4..b20aee0 100644
--- a/source/Options/index.tsx
+++ b/source/Options/index.tsx
@@ -1,4 +1,4 @@
-import React from 'react';
+import * as React from 'react';
import ReactDOM from 'react-dom';
import Options from './Options';
diff --git a/source/Popup/Popup.tsx b/source/Popup/Popup.tsx
index 498229f..bb79e46 100644
--- a/source/Popup/Popup.tsx
+++ b/source/Popup/Popup.tsx
@@ -1,4 +1,4 @@
-import React from 'react';
+import * as React from 'react';
import {browser, Tabs} from 'webextension-polyfill-ts';
import './styles.scss';
diff --git a/source/Popup/index.tsx b/source/Popup/index.tsx
index 17939b0..90b0950 100644
--- a/source/Popup/index.tsx
+++ b/source/Popup/index.tsx
@@ -1,4 +1,4 @@
-import React from 'react';
+import * as React from 'react';
import ReactDOM from 'react-dom';
import Popup from './Popup';