6 lines
159 B
TypeScript
6 lines
159 B
TypeScript
import { Blog } from "@/lib/types/blog";
|
|
import { serverFetch } from "../server";
|
|
|
|
export async function list() {
|
|
return serverFetch<Blog[]>('/api/blog')
|
|
} |