7c09ac46da
The purpose of this branch is to bring this project in line with the JWT protcol that the microservice is using. For the time being, it's easier to get a stripped-down and stable build and replace the lost parts, one- by-one.
13 lines
213 B
React
13 lines
213 B
React
//polyfills
|
|
import 'regenerator-runtime/runtime';
|
|
|
|
import React from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
|
|
import App from './components/app';
|
|
|
|
ReactDOM.render(
|
|
<App />,
|
|
document.querySelector('#root')
|
|
);
|