-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #91 from atomicjolt/sc/reexports
added reexports module to reexport things to consumers of the package that might be helpful
- Loading branch information
Showing
3 changed files
with
13 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
/** Module re-exports functionality from nested modules to make them easier to use */ | ||
|
||
export { useListData, useAsyncList, useTreeData } from "react-stately"; | ||
|
||
export type { | ||
SortDescriptor, | ||
Selection, | ||
SortDirection, | ||
SelectionMode, | ||
SelectionBehavior, | ||
} from "react-stately"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters