mirror of
https://github.com/ente-io/ente.git
synced 2025-06-15 21:07:23 +00:00
7 lines
185 B
TypeScript
7 lines
185 B
TypeScript
import { createContext } from "react";
|
|
|
|
export const OverflowMenuContext = createContext({
|
|
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
close: () => {},
|
|
});
|