Skip to content

Commit

Permalink
fix: missing context exports (#110)
Browse files Browse the repository at this point in the history
  • Loading branch information
matttdawson authored Nov 13, 2022
1 parent d6073e4 commit 0845824
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
export * from "./react-menu3/index";
export * from "./react-menu3/types";

export * from "./contexts/GridUpdatingContext";
export * from "./contexts/GridUpdatingContextProvider";
export * from "./contexts/GridContext";
export * from "./contexts/GridContextProvider";
export * from "./contexts/GridUpdatingContext";
export * from "./contexts/GridUpdatingContextProvider";
export * from "./contexts/GridPopoverContext";
export * from "./contexts/GridPopoverContextProvider";
export * from "./contexts/GridSubComponentContext";

export type { GridBaseRow } from "./components/Grid";
export { Grid } from "./components/Grid";
Expand Down

0 comments on commit 0845824

Please sign in to comment.