You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. }