I have here a date and time and I'm wondering its outputting an incorrect date and time.
2022-05-19T21:53:00+00:00
. Its currently outputting May 20. It should be May 19 still?
CODESANDBOX: CLICK HERE
import { format, parseISO } from "date-fns";
let date = "2022-05-19T21:53:00+00:00";
document.getElementById("app").innerHTML = `
<div>${format(parseISO(date), "LLL dd, y hh:mm bbb")}</div>
`;