jondot / awesome-react-native

Awesome React Native components, news, tools, and learning material!

Home Page:http://www.awesome-react-native.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Is there a string renderer for react native?

radiorz opened this issue · comments

such as this:

import templateRedenderFunc  from './???'
export default Renderer(template=''){
  return templateRedenderFunc (template)
}

using

const template = `<Text>1234</Text>`
function App(){
return <Renderer template={template}></Renderer>

}

I only know that react-native-render-html could help for rendering string html template