about summary refs log tree commit diff
path: root/src/screens/Messages/gate.tsx
blob: f225a0c9d1aa0277a85192a617a9eb7a9214f10b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import React from 'react'
import {Text, View} from 'react-native'

export function ClipClopGate() {
  return (
    <View
      style={{
        flex: 1,
        alignItems: 'center',
        justifyContent: 'center',
        gap: 20,
      }}>
      <Text style={{fontSize: 50}}>🐴</Text>
      <Text style={{textAlign: 'center'}}>Nice try</Text>
    </View>
  )
}