import { useSelector } from "react-redux"; function NoteItem({ note }) { const { user } = useSelector((state) => state.auth); return (
{note.text}