12 lines
226 B
TypeScript
12 lines
226 B
TypeScript
|
|
import { api } from "@nice/client";
|
||
|
|
|
||
|
|
export default function PostSelect() {
|
||
|
|
const { data } = api.post.findMany.useQuery({
|
||
|
|
where: {
|
||
|
|
title: {
|
||
|
|
contains: ""
|
||
|
|
}
|
||
|
|
}
|
||
|
|
})
|
||
|
|
|
||
|
|
}
|