This repository has been archived on 2018-10-12. You can view files and clone it, but cannot push or open issues or pull requests.
image-juicer/app/components/Home.js

13 lines
197 B
JavaScript

import React, { Component } from 'react';
export default class Home extends Component {
render() {
return (
<div>
<h1>Home</h1>
<h3>...is where the heart is</h3>
</div>
);
}
}