Commit 53d44c0 1 parent a7f9c9a commit 53d44c0 Copy full SHA for 53d44c0
File tree 3 files changed +11
-8
lines changed
packages/fuselage/src/components/Box
3 files changed +11
-8
lines changed Original file line number Diff line number Diff line change @@ -17,13 +17,13 @@ jobs:
17
17
with :
18
18
node-version : " 14"
19
19
- uses : actions/checkout@v2
20
- - uses : actions/cache@v2
21
- id : yarn-cache
22
- with :
23
- path : |
24
- **/node_modules
25
- .yarn/cache
26
- key : ${{ runner.os }}-modules-${{ hashFiles('yarn.lock') }}
20
+ - uses : actions/cache@v2
21
+ id : yarn-cache
22
+ with :
23
+ path : |
24
+ **/node_modules
25
+ .yarn/cache
26
+ key : ${{ runner.os }}-modules-${{ hashFiles('yarn.lock') }}
27
27
- run : yarn install
28
28
if : steps.yarn-cache.outputs.cache-hit != 'true'
29
29
- run : yarn run build
Original file line number Diff line number Diff line change @@ -5,4 +5,5 @@ type ScrollableProps = PropsWithChildren<{
5
5
vertical ?: boolean ;
6
6
onScrollContent ?: ( touching : { top : boolean } ) => void ;
7
7
} > ;
8
- export const Scrollable : ForwardRefExoticComponent < ScrollableProps > ;
8
+ const Scrollable : ForwardRefExoticComponent < ScrollableProps > ;
9
+ export default Scrollable ;
Original file line number Diff line number Diff line change @@ -147,3 +147,5 @@ type BoxProps = PropsWithChildren<{
147
147
RefAttributes < unknown > ;
148
148
149
149
export const Box : ForwardRefExoticComponent < BoxProps > ;
150
+
151
+ export { default as Scrollable } from './Scrollable' ;
You can’t perform that action at this time.
0 commit comments