initial draft

This commit is contained in:
Tobias Miesel
2018-10-14 13:47:59 +02:00
parent a1b1010c18
commit b6e67cf3db
20 changed files with 25116 additions and 4370 deletions

8
src/js/popup.js Normal file
View File

@@ -0,0 +1,8 @@
console.log("okish from popup.js")
import React, { createElement } from 'react'
import ReactDOM from 'react-dom'
import Modal from './components/Modal'
const domContainer = document.querySelector('#moco')
ReactDOM.render(createElement(Modal), domContainer)