onion/js/components/hello_app.jsx

12 lines
197 B
JavaScript

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