processed data bucket functional

This commit is contained in:
Evan Lanham
2022-03-12 10:32:02 -07:00
parent 71be3caac0
commit 79412b8afc
8 changed files with 134 additions and 204 deletions
+10 -9
View File
@@ -1,13 +1,14 @@
import React from '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" />
</div>
)
}
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
export default WelcomePage;