Added vehicle and owner pages/routes.
This commit is contained in:
9
client/src/pages/vehicles/vehicles.page.component.jsx
Normal file
9
client/src/pages/vehicles/vehicles.page.component.jsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import React from 'react'
|
||||
|
||||
export default function VehiclesPageComponent() {
|
||||
return (
|
||||
<div>
|
||||
Vehiculos
|
||||
</div>
|
||||
)
|
||||
}
|
||||
6
client/src/pages/vehicles/vehicles.page.container.jsx
Normal file
6
client/src/pages/vehicles/vehicles.page.container.jsx
Normal file
@@ -0,0 +1,6 @@
|
||||
import React from "react";
|
||||
import VehiclesPageComponent from "./vehicles.page.component";
|
||||
|
||||
export default function VehiclesPageContainer() {
|
||||
return <VehiclesPageComponent />;
|
||||
}
|
||||
Reference in New Issue
Block a user