From 9a1f9e3080e1f19ddb2460c0ea995bb5eb0db74f Mon Sep 17 00:00:00 2001 From: Jord McCord Date: Mon, 16 Dec 2024 13:46:37 +0000 Subject: [PATCH] chore(native-ui): update `Box` all components link [skip-native] --- .../docs/components/AllComponents.web.tsx | 56 +++++++++++-------- 1 file changed, 32 insertions(+), 24 deletions(-) diff --git a/apps/native-ui-storybook/docs/components/AllComponents.web.tsx b/apps/native-ui-storybook/docs/components/AllComponents.web.tsx index 933c28834..afb1399a0 100644 --- a/apps/native-ui-storybook/docs/components/AllComponents.web.tsx +++ b/apps/native-ui-storybook/docs/components/AllComponents.web.tsx @@ -27,7 +27,14 @@ import { Card, Switch, } from '@utilitywarehouse/native-ui'; -import { Actionsheet, Box, Carousel, CarouselPagination } from '@utilitywarehouse/native-ui/lab'; +import { + Actionsheet, + Box, + Carousel, + CarouselItem, + CarouselItems, + CarouselPagination, +} from '@utilitywarehouse/native-ui/lab'; import { ElectricityMediumIcon, MobileMediumIcon, @@ -92,7 +99,7 @@ const AllComponents: React.FC = () => { - +
@@ -119,28 +126,29 @@ const AllComponents: React.FC = () => { link="/?path=/docs/native-ui-components-card--docs" >
- ( - - {item.title} - - )} - width={150} - > + + + {[ + { + key: 1, + title: "I'm a Carousel item", + }, + { + key: 2, + title: "I'm another Carousel item", + }, + { + key: 3, + title: "I'm a third Carousel item", + }, + ].map(item => ( + + + {item.title} + + + ))} +