mirror of
https://github.com/ascribe/onion.git
synced 2025-02-14 21:10:27 +01:00
12 lines
193 B
JavaScript
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;
|