import Link from "next/link";
import NotesInfo from '../public/notes.json';
function RecentNotes() {
const notes = Object.entries(NotesInfo);
return (
Recent Notes
{notes?.slice(0, 10)
.map(([slug, note]: any) => {
return
{note.title}
})
}
{
notes.length > 10 &&
More...
}
);
}
export default RecentNotes;