Added vehicle and owner pages/routes.

This commit is contained in:
Patrick Fic
2020-02-07 10:54:08 -08:00
parent b86586241a
commit b070b0918c
20 changed files with 316 additions and 35 deletions

View File

@@ -0,0 +1,5 @@
import React from "react";
export default function OwnersDetailComponent() {
return <div>Owner Detail</div>;
}

View File

@@ -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 />;
}