blob: 04c3680896c650dc99ffe0e4627dd258cb9cc6b5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
import {ImageSourcePropType} from 'react-native'
export const DEF_AVATAR: ImageSourcePropType = {uri: '/img/default-avatar.jpg'}
export const SCENE_EXPLAINER: ImageSourcePropType = {
uri: '/img/scene-explainer.jpg',
}
export const TABS_EXPLAINER: ImageSourcePropType = {
uri: '/img/tabs-explainer.jpg',
}
|