import { Button, IconWithButton } from "../components/button"; import { ChevronDoubleRightIcon } from "@heroicons/react/24/outline"; import printDate from "../components/utils"; function Notes() { return (
{Object.entries(localStorage.getObj("Notes")) .sort((a, b) => { return b[1].time - a[1].time; }) .map((val) => { return (
{val[1].name}
{printDate(val[1].time)}
); })}
); } export default Notes;