import React, { useState } from "react"; import { PostType } from "./typesrc"; type Props = { post: PostType; } export default function Post({ post }: Props) { const [count, setCount] = useState(0); return (
{/*title */}
{post.date}
{count}
); }