Added vehicle and owner pages/routes.
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
import React from "react";
|
||||
|
||||
export default function OwnersDetailComponent() {
|
||||
return <div>Owner Detail</div>;
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
import React from "react";
|
||||
import OwnersDetailComponent from "./owners-detail.page.component";
|
||||
|
||||
export default function OwnersDetailContainer({ match }) {
|
||||
const { ownerId } = match.params;
|
||||
console.log("ownerId", ownerId);
|
||||
return <OwnersDetailComponent />;
|
||||
}
|
||||
Reference in New Issue
Block a user