File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed
generatedTypes/components/expandableSection
src/components/expandableSection Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -21,5 +21,10 @@ export declare type ExpandableSectionProps = {
21
21
*/
22
22
onPress ?: ( ) => void ;
23
23
} ;
24
+ /**
25
+ * @description : ExpandableSection component to render expanded section below or above the sectionHeader
26
+ * @gif : https://media.giphy.com/media/uCGZ92nZPdBOmF1H1z/giphy.gif, https://media.giphy.com/media/0VIh41mkSl8omS49oD/giphy.gif
27
+ * @example : https://github.com/wix/react-native-ui-lib/blob/master/demo/src/screens/componentScreens/ExpandableSectionScreen.tsx
28
+ */
24
29
declare function ExpandableSection ( props : ExpandableSectionProps ) : JSX . Element ;
25
30
export default ExpandableSection ;
Original file line number Diff line number Diff line change @@ -27,6 +27,12 @@ export type ExpandableSectionProps = {
27
27
onPress ?: ( ) => void ;
28
28
} ;
29
29
30
+ /**
31
+ * @description : ExpandableSection component to render expanded section below or above the sectionHeader
32
+ * @gif : https://media.giphy.com/media/uCGZ92nZPdBOmF1H1z/giphy.gif, https://media.giphy.com/media/0VIh41mkSl8omS49oD/giphy.gif
33
+ * @example : https://github.com/wix/react-native-ui-lib/blob/master/demo/src/screens/componentScreens/ExpandableSectionScreen.tsx
34
+ */
35
+
30
36
function ExpandableSection ( props : ExpandableSectionProps ) {
31
37
const { expanded, sectionHeader, children, top} = props ;
32
38
You can’t perform that action at this time.
0 commit comments