chore: add imports of styles to jsx files

This commit is contained in:
abhijithvijayan 2020-01-31 16:04:26 +05:30
parent 8384723acc
commit eec03e3ef8
4 changed files with 4 additions and 0 deletions

View File

@ -1,5 +1,7 @@
import React from 'react';
import './styles.scss';
const Options: React.FC = () => {
return <div>Hello World</div>;
};

View File

@ -1,6 +1,8 @@
import React from 'react';
import { browser, Tabs } from 'webextension-polyfill-ts';
import './styles.scss';
function openWebPage(url: string): Promise<Tabs.Tab> {
return browser.tabs.create({ url });
}