mirror of
https://github.com/ditkrg/AuthorizationServerDemos.git
synced 2026-01-23 01:46:39 +00:00
16 lines
318 B
JavaScript
16 lines
318 B
JavaScript
import React from "react";
|
|
import Navbar from "./components/Navbar";
|
|
import Main from "./components/Main";
|
|
import VehiclesMain from "./components/VehiclesMain";
|
|
|
|
const YourVehicles = () => {
|
|
return (
|
|
<div>
|
|
<Navbar />
|
|
<Main Component={VehiclesMain} />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default YourVehicles;
|