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

added start of entries component

parent b28da82e
Loading
Loading
Loading
Loading
+14 −0
Original line number Diff line number Diff line
// ./react-frontend/my-react-app/src/components/Entries.js

import React from 'react';

function Entries() {
  return (
    <div className="about-page">
      <h2>Blog Entries</h2>
      <hr/>
    </div>
  );
}

export default Entries;