Init(Core): add to repo and add seeders
This commit is contained in:
19
resources/js/Pages/Content/Index.jsx
Normal file
19
resources/js/Pages/Content/Index.jsx
Normal file
@@ -0,0 +1,19 @@
|
||||
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} />
|
||||
Reference in New Issue
Block a user