5 lines
108 B
TypeScript
5 lines
108 B
TypeScript
export async function fetchPastes() {
|
|
const res = await fetch('/api/paste');
|
|
return await res.json();
|
|
}
|