Some checks failed
Close stale issues and PRs / stale (push) Has been cancelled
20 lines
452 B
TypeScript
20 lines
452 B
TypeScript
import React from 'react';
|
|
import { View, ViewStyle } 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 as ViewStyle }>
|
|
<Thumbnail />
|
|
</View>
|
|
);
|
|
}
|