import React from 'react'; import i18n from "i18n-js"; import C from 'rn-class' C.addColor("#03cf5d", "color-naver"); C.addColor("#6280ba", "color-agreeBtn"); C.addColor("#c87320" , "color-not_agreeBtn"); export default (props)=>{ // 다국어 처리 영역 let {termsTitle, agree , not_agree} = i18n.t("AcceptTerms"); return ( {/* body */} { termsTitle.map((title , idx)=>{ return ( {title} }/> ) }) } ) }