ghost-listmonk-connector/ui/app/sons/page.tsx
troneras 1fd7dad8e4 # This is a combination of 2 commits.
# This is the 1st commit message:

first commit

# This is the commit message #2:

fixed cache
2024-08-21 02:08:01 +02:00

21 lines
485 B
TypeScript

"use client";
import Link from "next/link";
import { Button } from "@/components/ui/button";
import { SonList } from "@/components/SonList";
export default function SonListPage() {
return (
<div className="space-y-4">
<div className="flex justify-between items-center">
<h1 className="text-2xl font-bold">Manage Sons</h1>
<Link href="/sons/new">
<Button>Create New Son</Button>
</Link>
</div>
<SonList />
</div>
);
}