fp/services/next/app/tags/page.tsx

15 lines
368 B
TypeScript

import { getTags } from '../lib/tags'
import SortableTags from '../components/sortable-tags'
export default async function Page() {
const tags = await getTags();
return (
<div className="content">
<div className="section">
<h2>Tags</h2>
<SortableTags tags={tags}/>
</div>
</div>
)
}