13 lines
344 B
JavaScript
13 lines
344 B
JavaScript
import React from "react";
|
|
import CourtesyCarsListComponent from "../../components/courtesy-cars-list/courtesy-cars-list.component";
|
|
|
|
export default function CourtesyCarsPageComponent({ loading, data, refetch }) {
|
|
return (
|
|
<CourtesyCarsListComponent
|
|
loading={loading}
|
|
courtesycars={data}
|
|
refetch={refetch}
|
|
/>
|
|
);
|
|
}
|