Files
ScoutingApp2022/webserver/src/Pages/WelcomePage.jsx
T

21 lines
569 B
React
Raw Normal View History

2022-03-12 10:32:02 -07:00
import React from "react";
2022-01-28 03:55:46 +00:00
import "./WelcomePage.css";
2022-01-28 04:25:56 +00:00
import "../App.css";
2022-03-24 00:28:48 -06:00
import DbChooser from "../components/DbChooser";
import { Box } from "@mui/material";
2022-02-03 19:25:32 -07:00
const WelcomePage = () => {
2022-03-12 10:32:02 -07:00
return (
<div className="welcome">
2022-03-24 00:28:48 -06:00
<Box sx={{ display: "flex", flexDirection: "column", alignItems: "center" }}>
<h1>Welcome to Ridgebotics Scouting Web Application 2022</h1>
{/* <img src="/WelcomePageImage.webp" /> */}
{/* <img src="/picgoeshard.jpg" /> */}
<DbChooser />
</Box>
2022-03-12 10:32:02 -07:00
</div>
);
};
2022-02-03 19:25:32 -07:00
2022-03-12 10:32:02 -07:00
export default WelcomePage;