implementing pages and styles
This commit is contained in:
19
react-native/app/components/button/component.tsx
Normal file
19
react-native/app/components/button/component.tsx
Normal file
@@ -0,0 +1,19 @@
|
||||
import React from 'react'
|
||||
import { Text } from 'react-native'
|
||||
import { TouchableOpacity } from 'react-native-gesture-handler'
|
||||
import { ButtonAppStyle, TextButton } from './styles';
|
||||
|
||||
type IButtonApp = {
|
||||
children?: object
|
||||
onPress?: Function
|
||||
}
|
||||
export const ButtonApp = ({children, onPress}:IButtonApp)=>{
|
||||
return (
|
||||
<>
|
||||
<ButtonAppStyle onPress={onPress}>
|
||||
<TextButton>{children}</TextButton>
|
||||
</ButtonAppStyle>
|
||||
|
||||
</>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user