Loading [MathJax]/jax/output/HTML-CSS/fonts/TeX/fontdata.js

RR-1. Create a blog template with react

Create a clone of this project

This website is an SPA, with three main routes. 

The home page is static and has only a welcome message.

The /create has a form where we can create a post.

After every post is created , we get ourselves redirected to the /show route, which shows all the post that were created. Every post should depict the information about who the author of the post is, when the post was created, the title and the content of it.

Bonus: Every post should have a link which should redirect to a dedicated page for this blog post only!

Hint: Learn more about how to create routes with params and how to parse route params with a match.params statement.