about summary refs log tree commit diff
path: root/src/view/lib/assets.ts
blob: 957348eca364737e8b2452e10b7ab73fda114812 (plain) (blame)
1
2
3
4
5
6
7
8
9
import {ImageSourcePropType} from 'react-native'

export const AVIS: Record<string, ImageSourcePropType> = {
  'alice.test': {uri: '/img/alice.jpg'},
  'bob.test': {uri: '/img/bob.jpg'},
  'carol.test': {uri: '/img/carla.jpg'},
}

export const BANNER: ImageSourcePropType = {uri: '/img/banner.jpg'}