mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
22e46a40ad
This pull request updates the blog post rendering in the EdgeDB example to use our `streamdown` library in static mode instead of `react-markdown` for Markdown parsing and rendering. --------- Co-authored-by: Joseph <joseph.chamochumbi@vercel.com>
41 lines
918 B
TypeScript
41 lines
918 B
TypeScript
import React from "react";
|
|
import { Streamdown } from "streamdown";
|
|
import Link from "next/link";
|
|
import { PostProps } from "../pages/blog/[id]";
|
|
|
|
const Post: React.FC<{ post: PostProps }> = ({ post }) => {
|
|
return (
|
|
<Link href={`/blog/${post.id}`}>
|
|
<div>
|
|
<h2>{post.title}</h2>
|
|
<small>By {post.authorName}</small>
|
|
<br />
|
|
<br />
|
|
<Streamdown mode="static" className="streamdown">
|
|
{post.content || ""}
|
|
</Streamdown>
|
|
<style jsx>{`
|
|
div {
|
|
color: inherit;
|
|
padding: 2rem;
|
|
cursor: pointer;
|
|
}
|
|
h2 {
|
|
margin: 0px;
|
|
padding-bottom: 4px;
|
|
}
|
|
small {
|
|
color: #888;
|
|
}
|
|
.streamdown,
|
|
.streamdown > p {
|
|
margin: 0px;
|
|
}
|
|
`}</style>
|
|
</div>
|
|
</Link>
|
|
);
|
|
};
|
|
|
|
export default Post;
|