Skip to content
Prev Previous commit
Next Next commit
forgot about the native exports
  • Loading branch information
aristath authored and youknowriad committed May 19, 2021
commit afa56ec892093b4967da266f332470996e97c980
2 changes: 1 addition & 1 deletion packages/components/src/index.native.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export { default as QueryControls } from './query-controls';
export { default as Notice } from './notice';
export { default as NoticeList } from './notice/list';
export { default as RadioControl } from './radio-control';
export { default as UnitControl } from './unit-control';
export { default as UnitControl, useCustomUnits } from './unit-control';
export { default as Disabled } from './disabled';

// Higher-Order Components
Expand Down
1 change: 1 addition & 0 deletions packages/components/src/unit-control/index.native.js
Original file line number Diff line number Diff line change
Expand Up @@ -177,4 +177,5 @@ function UnitControl( {
);
}

export { useCustomUnits } from './utils';
export default memo( withPreferredColorScheme( UnitControl ) );