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

12 lines
297 B
JavaScript
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-02-03 19:25:32 -07:00
const WelcomePage = () => {
return (
<div class='center'>
2022-01-28 03:55:46 +00:00
<h1>Welcome to Ridgebotics Scouting Web Aplication 2022</h1>
2022-02-03 19:25:32 -07:00
<img src = "/WelcomePageImage.webp"/>
</div>
)
}
export default WelcomePage