Commit 20d0ff20 authored by Markus Mößler's avatar Markus Mößler
Browse files

updated home component

parent 9ecc6a3b
Loading
Loading
Loading
Loading
+18 −0
Original line number Diff line number Diff line
// ./react-frontend/my-react-app/src/components/Home.js

import React from 'react';

function About() {
  return (
    <div className="about-page">
      <h2>Welcome to the React-Tornado Blog Demo</h2>
      <hr/>
      <h3>General</h3>
      <p>
        This web application...
      </p>
    </div>
  );
}

export default About;