mirror of
https://github.com/abhijithvijayan/web-extension-starter.git
synced 2025-10-07 07:22:37 +02:00
7 lines
159 B
TypeScript
7 lines
159 B
TypeScript
import React from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
|
|
import Popup from './Popup';
|
|
|
|
ReactDOM.render(<Popup />, document.getElementById('popup-root'));
|