Files
5chan/src/components/post/post.tsx
T

16 lines
307 B
TypeScript
Raw Normal View History

2024-03-22 15:31:02 +01:00
import { Comment } from '@plebbit/plebbit-react-hooks';
import styles from './post.module.css';
const Post = ({ post }: Comment) => {
const { content, link, title } = post;
return (
<div>
<hr />
<h1>{post.title}</h1>
<p>{post.content}</p>
</div>
);
};
export default Post;