Files
ScoutingApp2022/webserver/src/Pages/WelcomePage.js
T
Aquaticholic 06cd2d0db9 typo
2022-01-28 04:02:23 +00:00

12 lines
298 B
JavaScript

import React from 'react'
import "./WelcomePage.css";
const WelcomePage = () => {
return (
<div class='center'>
<h1>Welcome to Ridgebotics Scouting Web Application 2022</h1>
<img src = "/WelcomePageImage.webp"/>
</div>
)
}
export default WelcomePage