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