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
Raw Normal View History

import React, { Component } from 'react';
export default class Home extends Component {
2017-04-06 15:23:47 -04:00
render() {
return (
<div>
<h1>Home</h1>
<h3>...is where the heart is</h3>
</div>
);
}
}