UNPKG
@wolf-tp/react-native-boilerplate
Version:
latest (0.0.22)
0.0.22
0.0.21
0.0.20
0.0.19
0.0.18
0.0.17
0.0.16
0.0.15
React Native Template
wolf-tp/ReactNativeBoilerplate
@wolf-tp/react-native-boilerplate
/
template
/
src
/
app
/
common
/
styles
/
global-styles.ts
14 lines
(11 loc)
•
233 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import
{ css, styled }
from
'./styled'
;
export
const
rowCss = css`
flex-direction
: row;
align-items
: center; `
;
export
const
RowView
= styled.
View
`
${rowCss}
`
;
export
const
RowTouch
= styled.
TouchableOpacity
`
${rowCss}
`
;