staff_data/apps/web/src/components/models/post/PostSelect.tsx

12 lines
226 B
TypeScript
Raw Normal View History

2025-03-04 19:58:10 +08:00
import { api } from "@nice/client";
export default function PostSelect() {
const { data } = api.post.findMany.useQuery({
where: {
title: {
contains: ""
}
}
})
}