Init(Core): add to repo and add seeders

This commit is contained in:
2026-04-28 22:48:42 +03:30
commit be6b699ff0
205 changed files with 22524 additions and 0 deletions

View 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} />