1
0
mirror of https://github.com/ascribe/onion.git synced 2025-02-14 21:10:27 +01:00
onion/js/components/hello_app.js
2015-05-15 15:05:17 +02:00

12 lines
193 B
JavaScript

import React from 'react';
class HelloApp extends React.Component {
render () {
return (
<h1>ascribe all the things!</h1>
);
}
};
export default HelloApp;