startit/react_test/spa_react/src/Home.js

13 lines
297 B
JavaScript

import React, { Component } from "react";
class Home extends Component {
render() {
return (
<div>
<h3>SPA App - Home</h3>
<p>This is a paragraph on the HomePAge of the SPA App.</p>
</div>
);
}
}
export default Home;