import styles from "./styles.module.css"; const Post = ({ id, pathname }) => { return (
I am the post {id}; my pathname is: {pathname}
); }; export default Post;