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 AddCard from './AddCard'
import DashboardCardWrapper from '../../../pages/Dashboard/DashboardCardWrapper'
const AddCardsContainer = () => {
return (
<YStack
style={{
borderRadius: '16px',
boxShadow: '0 0 8px rgba(0, 0, 0, 0.1)',
backgroundColor: '$background',
}}
>
<AddCard />
<AddCard />
</YStack>
<DashboardCardWrapper padding="0">
<YStack>
<AddCard />
<AddCard />
</YStack>
</DashboardCardWrapper>
)
}