import axios from "axios" import type { Post } from "./types" export const getPostsApi = async () => { const response = await axios.get("https://jsonplaceholder.typicode.com/posts"); return response.data; }