9 lines
310 B
TypeScript
9 lines
310 B
TypeScript
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',
|
|
}
|