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 SyncCardContent from './SyncCardContent'
import DashboardCardWrapper from '../DashboardCardWrapper'
const SyncStatusCard = () => {
return (
<YStack space={'$2'}>
Sync Status
<SyncCardContent />
<SyncCardContent />
</YStack>
<DashboardCardWrapper padding="0">
<YStack space={'$2'}>
Sync Status
<SyncCardContent />
<SyncCardContent />
</YStack>
</DashboardCardWrapper>
)
}