diff options
Diffstat (limited to 'src/view/screens/Storybook/index.tsx')
-rw-r--r-- | src/view/screens/Storybook/index.tsx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/view/screens/Storybook/index.tsx b/src/view/screens/Storybook/index.tsx index c6beecefe..ec6bab13e 100644 --- a/src/view/screens/Storybook/index.tsx +++ b/src/view/screens/Storybook/index.tsx @@ -1,10 +1,10 @@ import React from 'react' import {ScrollView, View} from 'react-native' +import {isWeb} from '#/platform/detection' import {useSetThemePrefs} from '#/state/shell' -import {isWeb} from 'platform/detection' import {CenteredView} from '#/view/com/util/Views' -import {ListContained} from 'view/screens/Storybook/ListContained' +import {ListContained} from '#/view/screens/Storybook/ListContained' import {atoms as a, ThemeProvider, useTheme} from '#/alf' import {Button, ButtonText} from '#/components/Button' import {Breakpoints} from './Breakpoints' @@ -80,9 +80,8 @@ function StorybookInner() { </Button> </View> - <Buttons /> + <Forms /> - <Dialogs /> <ThemeProvider theme="light"> <Theming /> </ThemeProvider> @@ -93,16 +92,17 @@ function StorybookInner() { <Theming /> </ThemeProvider> + <Buttons /> <Typography /> <Spacing /> <Shadows /> <Buttons /> <Icons /> <Links /> - <Forms /> <Dialogs /> <Menus /> <Breakpoints /> + <Dialogs /> <Button variant="solid" |