Merge branch 'feat/inda-383-daily-stat' into 'main'
[ProtonMail-WebClient.git] / applications / drive / src / app / components / FolderTree / FloatingEllipsisContext.ts
blob4f741061a671acc5fd2af8a572d575eb70bf7c09
1 import { createContext } from 'react';
3 import type { FloatingEllipsisContextValue } from './hooks';
5 export const FloatingEllipsisContext = createContext<FloatingEllipsisContextValue>({
6     events: new EventTarget(),
7     getDimensions: () => ({ scrollWidth: 0, scrollLeft: 0 }),
8 });