feat: add wrapper to sync card
This commit is contained in:
parent
d83bb296c6
commit
0a2344e6ee
|
@ -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>
|
||||
)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue