Start of profile page.

This commit is contained in:
Harrison Deng 2022-04-07 20:59:30 -05:00
parent 5948ed561c
commit 88c0de660e

View File

@ -0,0 +1,14 @@
import React from "react";
import { Container } from "react-bootstrap";
export default class Profile extends React.Component {
render() {
return (
<div className="page-root">
<Container>
</Container>
</div>
);
}
}