scinote-web/app/javascript/packs/settings/app.jsx

23 lines
593 B
React
Raw Normal View History

2017-07-12 22:41:55 +08:00
// Run this example by adding <%= javascript_pack_tag 'hello_react' %> to the head of your layout file,
// like app/views/layouts/application.html.erb. All it does is render <div>Hello React</div> at the bottom
// of the page.
import React from 'react';
import ReactDOM from 'react-dom';
import Navigation from '../shared/navigation';
import messages from '../locales/messages';
2017-07-12 22:41:55 +08:00
const App = () => (
<div>
<Navigation page='Settings'/>
....
</div>
2017-07-12 22:41:55 +08:00
)
document.addEventListener('DOMContentLoaded', () => {
ReactDOM.render(
<App />,
document.getElementById('root')
2017-07-12 22:41:55 +08:00
)
})