import React from "react"; import { useLocation } from "react-router-dom"; import { PostType } from "../types"; interface PostState { state: PostType; } export function IntoPost() { const location = useLocation() as PostState; const post = location.state; // console.log(post); return (