Files
ScoutingApp2022/webserver/src/Pages/WelcomePage.jsx
T
2022-03-12 10:32:02 -07:00

15 lines
349 B
React

import React from "react";
import "./WelcomePage.css";
import "../App.css";
const WelcomePage = () => {
return (
<div className="welcome">
<h1>Welcome to Ridgebotics Scouting Web Application 2022</h1>
{/* <img src="/WelcomePageImage.webp" /> */}
<img src="/picgoeshard.jpg" />
</div>
);
};
export default WelcomePage;