feat: use updated wrapper for add cards container

This commit is contained in:
RadoslavDimchev 2023-09-14 12:04:02 +03:00
parent bc238a62a1
commit f504e7243a

View File

@ -1,19 +1,16 @@
import { YStack } from 'tamagui' import { YStack } from 'tamagui'
import AddCard from './AddCard' import AddCard from './AddCard'
import DashboardCardWrapper from '../../../pages/Dashboard/DashboardCardWrapper'
const AddCardsContainer = () => { const AddCardsContainer = () => {
return ( return (
<YStack <DashboardCardWrapper padding="0">
style={{ <YStack>
borderRadius: '16px', <AddCard />
boxShadow: '0 0 8px rgba(0, 0, 0, 0.1)', <AddCard />
backgroundColor: '$background', </YStack>
}} </DashboardCardWrapper>
>
<AddCard />
<AddCard />
</YStack>
) )
} }