import React, {FC} from 'react'; import Post, {dummyPost as post} from '../models/Post'; import Comment from '../types/Comment'; /** * Display a Post and the related comments. Shows a form to add a comment. */ const PostPage: FC = () => (
Back To Posts
{post.name}

{post.name}

{post.text}

Leave A Comment

{post.comments.map((c: Comment, i: number) => (
{c.name}

{c.name}

{c.text}

))}
); export default PostPage;