diff options
author | Eric Bailey <git@esb.lol> | 2024-10-14 04:06:07 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-14 12:06:07 +0300 |
commit | 830b4bee9c738576769b75218dadc6b1de1ba3a3 (patch) | |
tree | 44cdef83dfc29fde3670df88a8e339bf77c92d28 /src/view/screens/Storybook/index.tsx | |
parent | 7f3b5366e6908cff28295fbc4efee53550f0b4ea (diff) | |
download | voidsky-830b4bee9c738576769b75218dadc6b1de1ba3a3.tar.zst |
Add Admonition component (#5680)
* Add Admonition component * Tweak mobile padding * Format
Diffstat (limited to 'src/view/screens/Storybook/index.tsx')
-rw-r--r-- | src/view/screens/Storybook/index.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/view/screens/Storybook/index.tsx b/src/view/screens/Storybook/index.tsx index ec6bab13e..c737dad5b 100644 --- a/src/view/screens/Storybook/index.tsx +++ b/src/view/screens/Storybook/index.tsx @@ -7,6 +7,7 @@ import {CenteredView} from '#/view/com/util/Views' import {ListContained} from '#/view/screens/Storybook/ListContained' import {atoms as a, ThemeProvider, useTheme} from '#/alf' import {Button, ButtonText} from '#/components/Button' +import {Admonitions} from './Admonitions' import {Breakpoints} from './Breakpoints' import {Buttons} from './Buttons' import {Dialogs} from './Dialogs' @@ -80,7 +81,7 @@ function StorybookInner() { </Button> </View> - <Forms /> + <Admonitions /> <ThemeProvider theme="light"> <Theming /> @@ -92,6 +93,7 @@ function StorybookInner() { <Theming /> </ThemeProvider> + <Forms /> <Buttons /> <Typography /> <Spacing /> |