File size: 249 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 |
'use server'
import { revalidatePath } from 'next/cache'
import { countRef } from './make-query-client'
export async function queryExampleAction() {
await Promise.resolve()
countRef.current++
revalidatePath('/', 'page')
return undefined
}
|