1
0
mirror of https://github.com/mgerb/react-starter synced 2026-01-09 08:32:48 +00:00
Files
react-starter/app/app.tsx
2018-11-08 19:42:40 -06:00

7 lines
184 B
TypeScript

import '@babel/polyfill';
import React from 'react';
import ReactDOM from 'react-dom';
import { Routes } from './routes';
ReactDOM.render(<Routes />, document.getElementById('app'));