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,9 @@
import React from "react";
export default function VehicleDetailComponent({ vehicle }) {
return (
<div>
Veh detail <span>{vehicle.v_vin}</span>
</div>
);
}