export function generatePostHtml(postObject, userObject) {
const postText = postObject.text !== null ? `
${postObject.text}
` : "";
const postImg = postObject.img !== null ? `
` : "";
var options = {
year: "numeric",
month: "long",
day: "numeric",
hour: "numeric",
minute: "numeric"
};
const postCreatedDateTime = new Date(postObject.createdDateTime);
const html = ``;
return html;
}