12345678910111213141516171819202122232425262728293031 |
- import React from 'react';
-
- import C from 'rn-class'
- export default (props)=>{
- return (
- <C.View cls="flx1 bgc-color-white">
- <C.EL.Header
- ccls="bgc-color-transparent"
- leftComponent={<C.EL.Icon type="antdesign" name="close" onPress={()=>props.navigation.goBack()}/>}
- >
- </C.EL.Header>
- <C.View cls="flx1 jc-sa ai-c">
- <C.View >
- <C.Text cls="f3 fw-b">
- 다붓컨설팅
- </C.Text>
- <C.Text cls="f2">
- www.dabut.co.kr
- </C.Text>
- </C.View>
- {/* <C.View cls="mt10"> */}
- <C.EL.Button ccls="w90%" btncls="br10" title="다붓컨설팅 홈페이지"></C.EL.Button>
- {/* </C.View> */}
- </C.View>
- </C.View>
- )
- }
|