import * as React from 'react' import { render } from 'react-dom' import App from './App' {{#if i18n}} import { i18next } from './i18n' i18next.then(() => { render(, document.getElementById('root')) }) {{/if}} {{#unless i18n}} render(, document.getElementById('root')) {{/unless}}