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