Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

LocalThumbnail.js 438B

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