mirror of
https://github.com/status-im/nimbus-gui.git
synced 2025-02-03 15:13:38 +00:00
3878f0aa6b
This involved adding more react native stuff instead of removing, which I'm not super happy about.
14 lines
371 B
TypeScript
14 lines
371 B
TypeScript
import { config } from '@tamagui/config'
|
|
import { Text, View } from 'react-native'
|
|
|
|
import { createTamagui, setupReactNative } from '@tamagui/core'
|
|
|
|
setupReactNative({ Text, View })
|
|
|
|
const appConfig = createTamagui(config)
|
|
export type AppConfig = typeof appConfig
|
|
declare module 'tamagui' {
|
|
interface TamaguiCustomConfig extends AppConfig {}
|
|
}
|
|
export default appConfig
|