import './public-path'; import loadPolyfills from '../mastodon/load_polyfills'; import { start } from '../mastodon/common'; import ready from '../mastodon/ready'; import ComposeContainer from '../mastodon/containers/compose_container'; import React from 'react'; import ReactDOM from 'react-dom'; start(); function loaded() { const mountNode = document.getElementById('mastodon-compose'); if (mountNode) { const attr = mountNode.getAttribute('data-props'); if(!attr) return; const props = JSON.parse(attr); ReactDOM.render(, mountNode); } } function main() { ready(loaded); } loadPolyfills().then(main).catch(error => { console.error(error); });