import { AnimatePresence } from "@/components/ui/fade-in" import { Logs } from "./_logs" import { FormattedDate } from "./_components/fmt-dates" const ChangelogPage = () => { return (
{Logs.map((log) => { return (
) })}
) } export default ChangelogPage