Skip to content

Instantly share code, notes, and snippets.

@techomoro
Created November 16, 2021 02:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save techomoro/91d1dd2b782dd07994b6f084565f3e34 to your computer and use it in GitHub Desktop.
Save techomoro/91d1dd2b782dd07994b6f084565f3e34 to your computer and use it in GitHub Desktop.
import React from "react";
import { Outlet } from "react-router-dom";
function Blog() {
return (
<div className="home">
<div class="container">
<h1 className="text-center mt-5">Blog page</h1>
<Outlet />
</div>
</div>
);
}
export default Blog;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment