summaryrefslogtreecommitdiff
path: root/util/NoteContext.tsx
blob: 4578ca2bbc01d64b0ee7598759419b2347bfa57a (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
import { createContext } from 'react'

export interface NoteContextProps {
  outline: boolean
  collapse: boolean
}

export const NoteContext = createContext<NoteContextProps>({
  outline: false,
  collapse: true,
})