This commit is contained in:
Nicholas Orlowsky 2022-04-22 15:28:05 -05:00
parent 6d33f9bead
commit a3abf8a38e
No known key found for this signature in database
GPG key ID: 3845F78A73B14100
9 changed files with 31456 additions and 9298 deletions

13
src/pages/Blog.tsx Normal file
View file

@ -0,0 +1,13 @@
import React, {useState} from 'react';
import './Home.css';
function Blog() {
return (
<div className="Blog">
<h1>Blog</h1>
</div>
);
}
export default Blog;