aboutsummaryrefslogtreecommitdiffstats
path: root/apps/Notes/hooks/useNotes.js
blob: d02be10bb0a753d3f50e805b4f59e522c258b44e (plain) (blame)
1
2
3
4
5
6
7
import useSWR from 'swr'

export default function useNotes () {
  const { data: notes, error, mutate: mutateNotes } = useSWR('/api/notes')

  return { notes, mutateNotes, error }
}