import Link from "next/link"; import type { NoteMetaType } from "../../types"; import styles from "./NoteTitle.module.css"; type Props = Pick; const NoteTitle = ({ slug, htmlTitle }: Props) => (

); export default NoteTitle;