about summary refs log tree commit diff
path: root/src/view/lib/assets.native.ts
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2022-07-21 16:43:47 -0500
committerPaul Frazee <pfrazee@gmail.com>2022-07-21 16:43:47 -0500
commit29ed3d2ecf1fd6de8af0f25f6d541fe2adaf61f9 (patch)
treeafc0d632c981c097013a2fbb1c15decc1e78bec0 /src/view/lib/assets.native.ts
parent28dbc5f5e614b3caf08d36a7edaaf19a0ee0f0bc (diff)
downloadvoidsky-29ed3d2ecf1fd6de8af0f25f6d541fe2adaf61f9.tar.zst
Add header to PostThread view; update navigation to include stacking so that each tab maintains its own browsing history
Diffstat (limited to 'src/view/lib/assets.native.ts')
-rw-r--r--src/view/lib/assets.native.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/view/lib/assets.native.ts b/src/view/lib/assets.native.ts
new file mode 100644
index 000000000..af5ee2bac
--- /dev/null
+++ b/src/view/lib/assets.native.ts
@@ -0,0 +1,7 @@
+import {ImageSourcePropType} from 'react-native'
+
+export const AVIS: Record<string, ImageSourcePropType> = {
+  'alice.com': require('../../../public/img/alice.jpg'),
+  'bob.com': require('../../../public/img/bob.jpg'),
+  'carla.com': require('../../../public/img/carla.jpg'),
+}