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

13 lines
322 B
React
Raw Normal View History

2022-02-03 19:25:32 -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 = () => {
return (
2022-01-28 13:40:10 +00:00
<div class = "welcome">
2022-01-28 04:02:23 +00:00
<h1>Welcome to Ridgebotics Scouting Web Application 2022</h1>
2022-02-03 19:25:32 -07:00
<img src = "/WelcomePageImage.webp"/>
</div>
)
}
export default WelcomePage