/
Leks76
/
Next-tutorial
Обзор
Документация
Войти
/
Leks76
/
Next-tutorial
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/app/postExample/page.jsx
15 строк
364 B
Leks76
next tutorial complit
27 апр 2026, 07:21
Верифицирован
27 апр 2026, 07:21
2552a7e
Код
Авторство
О чём код?
import { createHelloGreeting } from './../lib/hello'; export const dynamic = 'force-dynamic'; const PostExample = async () => { const { message } = await createHelloGreeting('yurij'); return ( <section className="content"> <h2 className="section-title">Post request</h2> {message && <h3>{message}</h3>} </section> ); }; export default PostExample;