style: nicer re-exporting syntax

This commit is contained in:
Tom French 2022-05-07 15:17:22 +01:00 committed by James Long
parent d705cd351b
commit 88590dccaa

View file

@ -30,12 +30,11 @@ import Loading from '../svg/v1/AnimatedLoading';
import ExpandArrow from 'loot-design/src/svg/ExpandArrow';
import View from './View';
import Text from './Text';
import Stack from './Stack';
import { useProperFocus } from './useProperFocus';
export View from './View';
export Text from './Text';
export Stack from './Stack';
export { default as View } from './View';
export { default as Text } from './Text';
export { default as Stack } from './Stack';
export const useStableCallback = callback => {
const callbackRef = useRef();