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

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

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