init sub teams

This commit is contained in:
2024-03-02 17:04:13 -07:00
parent a8e32a97e6
commit 30ce146c2b
5 changed files with 85 additions and 33 deletions

View File

@ -0,0 +1,9 @@
{
"Team Captain": "Aidan Schroeder",
"Nole Tabelon": "Chassis Lead",
"Hewitt Yee": "Drivetrain Lead",
"Alex Buzdugan": "Electrical Lead",
"Brock Tomlinson": "Business and Softawre Lead",
"Ghaith Abu-Rub": "Suspension Lead",
"Anjali Patadia": "Steering Lead"
}

0
src/Teams/SubTeams.css Normal file
View File

34
src/Teams/SubTeams.js Normal file
View File

@ -0,0 +1,34 @@
const SubTeams = () => {
// const jsonImport = (filePath) => {
// data = import(filePath);
// return data;
// };
// leadership_json = jsonImport("./Leadership.json");
// console.log(leadership_json);
return (
<div>
<div>
<h2>Leadership</h2>
<p>gallery</p>
</div>
<table>
<tbody>
<tr>
<td>Aidan Schroeder</td>
<td>Team Captain</td>
</tr>
<tr>
<td>Hewitt Yee</td>
<td>Drivetrain Lead</td>
</tr>
<tr>
<td>Nole Tabelon</td>
<td>Chassis Lead</td>
</tr>
</tbody>
</table>
</div>
);
};
export default SubTeams;

View File

@ -1,5 +0,0 @@
export default function Teams() {
return (
<p>Teams</p>
);
};