feat: add wrapper to sync card

This commit is contained in:
RadoslavDimchev 2023-09-14 13:30:54 +03:00
parent d83bb296c6
commit 0a2344e6ee
1 changed files with 8 additions and 5 deletions

View File

@ -1,14 +1,17 @@
import { YStack } from 'tamagui' import { YStack } from 'tamagui'
import SyncCardContent from './SyncCardContent' import SyncCardContent from './SyncCardContent'
import DashboardCardWrapper from '../DashboardCardWrapper'
const SyncStatusCard = () => { const SyncStatusCard = () => {
return ( return (
<YStack space={'$2'}> <DashboardCardWrapper padding="0">
Sync Status <YStack space={'$2'}>
<SyncCardContent /> Sync Status
<SyncCardContent /> <SyncCardContent />
</YStack> <SyncCardContent />
</YStack>
</DashboardCardWrapper>
) )
} }