import { FC } from 'react'; import { View, StyleSheet } from 'react-native'; import { Skeleton } from './Skeleton'; export const SkeletonCard: FC = () => { return ( ); }; const styles = StyleSheet.create({ container: { backgroundColor: 'white', padding: 16, height: '100%', width: '100%', borderRadius: 8, }, avatar: { marginBottom: 20, }, });