This commit is contained in:
Kenneth Jannette
2023-04-17 01:46:23 -05:00
commit d0405a00eb
26 changed files with 31407 additions and 0 deletions

15
src/App.js Normal file
View File

@@ -0,0 +1,15 @@
import React from "react";
import "./styles/App.css";
import Vehicles from "./components/Vehicles";
import Navbar from "./components/Navbar";
const App = () => {
return (
<div className="app-container">
<Navbar />
<Vehicles />
</div>
);
};
export default App;