Skip to content

Commit

Permalink
creation of useLoadData callbacks
Browse files Browse the repository at this point in the history
  • Loading branch information
NielsJPeschel committed May 14, 2024
1 parent adbc474 commit 9c5bd49
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions hooks/useLoadData/callbacks/complete/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './complete';
1 change: 1 addition & 0 deletions hooks/useLoadData/callbacks/error/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './error';
3 changes: 3 additions & 0 deletions hooks/useLoadData/callbacks/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export * from './complete';
export * from './error';
export * from './success';
1 change: 1 addition & 0 deletions hooks/useLoadData/callbacks/success/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './success';
1 change: 1 addition & 0 deletions hooks/useLoadData/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
export * from './useLoadData';
export * from './types';
export * from './callbacks';
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@optum/react-hooks",
"version": "1.0.2",
"version": "1.0.3",
"description": "A reusable set of React hooks",
"repository": "https://github.com/Optum/react-hooks",
"license": "Apache 2.0",
Expand Down

0 comments on commit 9c5bd49

Please sign in to comment.