1
0
mirror of https://github.com/ascribe/onion.git synced 2025-01-19 01:06:11 +01:00
onion/js/components/ascribe_app.js

18 lines
330 B
JavaScript
Raw Normal View History

2015-05-13 16:26:12 +02:00
import React from 'react';
2015-05-15 15:38:25 +02:00
import Router from 'react-router';
var RouteHandler = Router.RouteHandler;
2015-05-13 16:26:12 +02:00
class AscribeApp extends React.Component {
2015-05-13 16:26:12 +02:00
render () {
return (
2015-05-15 15:38:25 +02:00
<div>
<h1>ascribe all the things!</h1>
2015-05-18 09:29:51 +02:00
<RouteHandler />
2015-05-15 15:38:25 +02:00
</div>
2015-05-13 16:26:12 +02:00
);
}
};
export default AscribeApp;