import React from 'react'; import Authenticated from '@/Layouts/Authenticated'; import { Head } from '@inertiajs/inertia-react'; export default function Dashboard(props) { const { employee, product } = props return ( Dashboard } >
Barang
{product}
Karyawan
{employee}
) }