1
0
mirror of https://github.com/ascribe/onion.git synced 2025-01-18 08:46:10 +01:00
onion/js/app.js

11 lines
162 B
JavaScript
Raw Normal View History

2015-05-13 16:26:12 +02:00
'use strict';
import React from 'react';
import HelloApp from './components/hello_app';
React.render(
<HelloApp />,
2015-05-15 15:05:17 +02:00
document.getElementById('main')
2015-05-13 16:26:12 +02:00
);