© 2026 Hedgehog Software, LLC
[id].tsx const Post = ( props: InferGetServerSidePropsType<typeof getServerSideProps> ) => { const { id } = props; const postData = trpc.post.getPost.useQuery({ postId: id, }); ...
useEffect(() => { setPostState({ title: post.data.title, description: post.data.description, }); }, []);