mirror of
https://github.com/ascribe/onion.git
synced 2024-12-22 17:33:14 +01:00
11 lines
162 B
JavaScript
11 lines
162 B
JavaScript
'use strict';
|
|
|
|
import React from 'react';
|
|
import HelloApp from './components/hello_app';
|
|
|
|
React.render(
|
|
<HelloApp />,
|
|
document.getElementById('main')
|
|
);
|
|
|