/** * React contexts for file state and actions */ import { createContext } from 'react'; import { FileContextStateValue, FileContextActionsValue } from '../../types/fileContext'; // Split contexts for performance export const FileStateContext = createContext(undefined); export const FileActionsContext = createContext(undefined); // Export types for use in hooks export type { FileContextStateValue, FileContextActionsValue };