Initial commit
This commit is contained in:
4
src/Pages/TeamsPage/TeamsPage.css
Normal file
4
src/Pages/TeamsPage/TeamsPage.css
Normal file
@@ -0,0 +1,4 @@
|
||||
.TeamsPage {
|
||||
flex-grow: 1;
|
||||
display: flex;
|
||||
}
|
||||
22
src/Pages/TeamsPage/TeamsPage.tsx
Normal file
22
src/Pages/TeamsPage/TeamsPage.tsx
Normal file
@@ -0,0 +1,22 @@
|
||||
import { Helmet } from "react-helmet";
|
||||
import "./TeamsPage.css";
|
||||
import { PaginationContainer } from "Components/PaginationContainer/PaginationContainer";
|
||||
|
||||
function TeamsPage() {
|
||||
return (
|
||||
<>
|
||||
<Helmet>
|
||||
<title>Teams Page | QMolSim</title>
|
||||
<meta
|
||||
name="description"
|
||||
content="See the documentation on how to setup and use the qunatum computational system"
|
||||
/>
|
||||
</Helmet>
|
||||
<div className="TeamsPage">
|
||||
<PaginationContainer />
|
||||
</div>
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
export default TeamsPage;
|
||||
Reference in New Issue
Block a user