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

); export default NoteTitle;