mirror of
https://github.com/ente-io/ente.git
synced 2025-05-24 12:09:17 +00:00
6 lines
116 B
TypeScript
6 lines
116 B
TypeScript
import { createContext } from "react";
|
|
|
|
export const OverflowMenuContext = createContext({
|
|
close: () => {},
|
|
});
|