import React, { useState } from "react"; export interface PostType { id: string; title: string; date: string; click: number; } type Props = { post: PostType; } export default function Post({ post }: Props) { const [count, setCount] = useState(0); return (