onion/js/components/hello_app.js

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;