guesstimate/client/src/index.js

12 lines
294 B
JavaScript
Raw Normal View History

2020-04-20 12:24:17 +02:00
import "./style/index.css";
import "bulma/css/bulma.css";
2020-04-21 20:45:47 +02:00
import "bulma-switch/dist/css/bulma-switch.min.css";
2020-04-20 12:24:17 +02:00
2020-07-09 13:00:42 +02:00
import React from 'react';
import { render } from 'react-dom';
2020-04-22 22:07:52 +02:00
import App from "./components/app";
2020-04-20 11:14:46 +02:00
2020-07-09 13:00:42 +02:00
render(
React.createElement(App, {}, null),
document.getElementById('app')
);