Hono × Inertia.js が作る新しい型貫通体験に触れてみた
2026年4月27日 23:10
はじめに
// サーバー側(Hono)
app.get('/posts/:id', (c) => {
const post = findPost(c.req.param('id'))
return c.render('Posts/Show', { post })
})
// クライアント側(React)
export default function Show({ post }: PageProps<'Posts/Show'>) {
return <h1>{post.title}</h1>
}
post の型は Post として完...