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

15 lines
368 B
TypeScript
Raw Normal View History

2024-01-20 16:16:14 +00:00
import { getTags } from '../lib/tags'
import SortableTags from '../components/sortable-tags'
export default async function Page() {
const tags = await getTags();
return (
<div className="content">
2024-03-29 07:28:02 +00:00
<div className="section">
2024-01-20 16:16:14 +00:00
<h2>Tags</h2>
<SortableTags tags={tags}/>
</div>
</div>
)
}