Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

LocalThumbnail.tsx 452B

12345678910111213141516171819
  1. import React from 'react';
  2. import { View, ViewStyle } from 'react-native';
  3. import Thumbnail from './Thumbnail';
  4. import styles from './styles';
  5. /**
  6. * Component to render a local thumbnail that can be separated from the
  7. * remote thumbnails later.
  8. *
  9. * @returns {ReactElement}
  10. */
  11. export default function LocalThumbnail() {
  12. return (
  13. <View style = { styles.localThumbnail as ViewStyle }>
  14. <Thumbnail />
  15. </View>
  16. );
  17. }