import { createContext } from 'react' import { EmacsVariables } from '../pages' type Theme = [name: string, themeObject: { [color: string]: string }] const VariablesContext = createContext({ subDirs: ['dailies', '.attach'], attachDir: '.attach', useInheritance: false, roamDir: '~/org', dailyDir: 'dailies', }) export { VariablesContext }