1
0
mirror of https://github.com/ascribe/onion.git synced 2024-12-22 17:33:14 +01:00
onion/js/app.js
2015-05-15 15:05:17 +02:00

11 lines
162 B
JavaScript

'use strict';
import React from 'react';
import HelloApp from './components/hello_app';
React.render(
<HelloApp />,
document.getElementById('main')
);