18 lines
463 B
TypeScript
18 lines
463 B
TypeScript
import AppLayout from '@/layouts/app-layout';
|
|
import testimonial from '@/routes/testimonial';
|
|
import { Head } from '@inertiajs/react';
|
|
|
|
export default function Testimonial() {
|
|
return (
|
|
<>
|
|
<AppLayout
|
|
breadcrumbs={[
|
|
{ title: 'testimonial', href: testimonial.index().url },
|
|
]}
|
|
>
|
|
<Head title={'Testimonials'}></Head>
|
|
</AppLayout>
|
|
</>
|
|
);
|
|
}
|