1
0
mirror of https://github.com/ascribe/onion.git synced 2024-06-30 21:52:08 +02:00
onion/js/components/hello_app.js

12 lines
193 B
JavaScript
Raw Normal View History

2015-05-13 16:26:12 +02:00
import React from 'react';
2015-05-15 15:05:17 +02:00
class HelloApp extends React.Component {
2015-05-13 16:26:12 +02:00
render () {
return (
<h1>ascribe all the things!</h1>
);
}
};
2015-05-15 15:05:17 +02:00
export default HelloApp;