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

15 lines
349 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-02-03 19:25:32 -07:00
const WelcomePage = () => {
2022-03-12 10:32:02 -07:00
return (
<div className="welcome">
<h1>Welcome to Ridgebotics Scouting Web Application 2022</h1>
{/* <img src="/WelcomePageImage.webp" /> */}
<img src="/picgoeshard.jpg" />
</div>
);
};
2022-02-03 19:25:32 -07:00
2022-03-12 10:32:02 -07:00
export default WelcomePage;