mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-09 15:05:35 +00:00
23 lines
699 B
TypeScript
23 lines
699 B
TypeScript
import type Collection from '#models/collection';
|
|
import { Link } from '@inertiajs/react';
|
|
import Footer from '~/components/footer/footer';
|
|
import DashboardLayout from '~/components/layouts/dashboard_layout';
|
|
|
|
// type DashboardPageProps = InferPageProps<CollectionsController, 'index'>
|
|
type DashboardPageProps = {
|
|
collections: Collection[];
|
|
};
|
|
|
|
export default function DashboardPage({ collections }: DashboardPageProps) {
|
|
console.log(collections);
|
|
return (
|
|
<DashboardLayout>
|
|
<Link href="/collections/create">Add collection</Link>
|
|
{collections.map((collection) => (
|
|
<li key={collection.id}>{collection.name}</li>
|
|
))}
|
|
<Footer />
|
|
</DashboardLayout>
|
|
);
|
|
}
|