Тестовый пост
Это обычный текстовый блок. Здесь может быть вводная часть поста, описание идеи или любой другой контент, который читается как обычный абзац.
Видео
Файл
sample.pdf
18.8 kB, application/pdf
Несколько картинок подряд
Код
type Post = {
id: string;
title: string;
publishedAt: Date;
};
async function fetchPost(id: string): Promise {
const response = await fetch(`/api/posts/${id}`);
if (!response.ok) {
throw new Error(`Post ${id} not found`);
}
return response.json();
}
fetchPost("test-post")
.then((post) => console.log(post.title))
.catch(console.error);Код
0
👍
👎
❤️
🔥
😮
😢
😀
😡
2
12.06.2026 03:08:09
Комментарии
Орбита
Описание проекта