Files

19 lines
550 B
JavaScript

import Layout from '@/Layouts/Layout';
import Searchbar from '@/Components/Searchbar';
import CreateButton from '@/Components/CreateButton';
import ProductForm from '@/Components/ProductForm';
import ProductTable from '@/Components/ProductTable';
import { useState } from 'react'
import { router } from '@inertiajs/react'
export default function Index({ contents }){
return (
<div className="relative flex flex-col h-full w-full space-y-6">
hello
</div>
);
}
Index.layout = page => <Layout children={page} />