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.
| 123456789101112131415161718192021 |
- // @flow
-
- import React from 'react';
- import { View } from 'react-native';
-
- import Thumbnail from './Thumbnail';
- import styles from './styles';
-
- /**
- * Component to render a local thumbnail that can be separated from the
- * remote thumbnails later.
- *
- * @returns {ReactElement}
- */
- export default function LocalThumbnail() {
- return (
- <View style = { styles.localThumbnail }>
- <Thumbnail />
- </View>
- );
- }
|