You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
791 B
React
26 lines
791 B
React
1 year ago
|
import React from 'react';
|
||
|
import AuthenticatedLayout from '@/Layouts/AuthenticatedLayout';
|
||
|
import { Head } from '@inertiajs/react';
|
||
|
|
||
|
export default function Dashboard(props) {
|
||
|
return (
|
||
|
<AuthenticatedLayout
|
||
|
auth={props.auth}
|
||
|
errors={props.errors}
|
||
|
flash={props.flash}
|
||
|
page={'Dashboard'}
|
||
|
action={''}
|
||
|
>
|
||
|
<Head title="Dashboard" />
|
||
|
|
||
|
<div>
|
||
|
<div className="mx-auto sm:px-6 lg:px-8 ">
|
||
|
<div className="overflow-hidden shadow-sm sm:rounded-lg bg-white dark:bg-gray-800">
|
||
|
<div className="p-6 dark:text-gray-100 ">Dashboard</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</AuthenticatedLayout>
|
||
|
);
|
||
|
}
|