import "./Note.css"; import ProfileImage from "Element/ProfileImage"; interface NoteGhostProps { className?: string; children: React.ReactNode; } export default function NoteGhost(props: NoteGhostProps) { const className = `note card ${props.className ?? ""}`; return (
{props.children}
); }