aboutsummaryrefslogtreecommitdiff
path: root/src/components/taggs/TaggsBar.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/taggs/TaggsBar.tsx')
-rw-r--r--src/components/taggs/TaggsBar.tsx35
1 files changed, 33 insertions, 2 deletions
diff --git a/src/components/taggs/TaggsBar.tsx b/src/components/taggs/TaggsBar.tsx
index 933f355d..88f670b5 100644
--- a/src/components/taggs/TaggsBar.tsx
+++ b/src/components/taggs/TaggsBar.tsx
@@ -18,9 +18,40 @@ const TaggsBar: React.FC<TaggsBarProps> = ({
isProfileView,
}) => {
const taggs: Array<JSX.Element> = [];
- for (let i = 0; i < 10; i++) {
+
+ taggs.push(
+ <Tagg
+ key={0}
+ style={styles.tagg}
+ social={'Instagram'}
+ isProfileView={isProfileView}
+ />,
+ );
+ taggs.push(
+ <Tagg
+ key={1}
+ style={styles.tagg}
+ social={'Facebook'}
+ isProfileView={isProfileView}
+ />,
+ );
+ taggs.push(
+ <Tagg
+ key={2}
+ style={styles.tagg}
+ social={'Twitter'}
+ isProfileView={isProfileView}
+ />,
+ );
+
+ for (let i = 3; i < 10; i++) {
taggs.push(
- <Tagg key={i} style={styles.tagg} isProfileView={isProfileView} />,
+ <Tagg
+ key={i}
+ style={styles.tagg}
+ social={'Instagram'}
+ isProfileView={isProfileView}
+ />,
);
}
const shadowOpacity: Animated.Node<number> = interpolate(y, {