First
This commit is contained in:
15
src/App.js
Normal file
15
src/App.js
Normal 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;
|
||||
Reference in New Issue
Block a user