mirror of
https://github.com/Team4388/ScoutingApp2022.git
synced 2026-06-09 08:48:05 -06:00
15 lines
349 B
React
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;
|