I want to use marked in reactjs as described in the reactjs docs.
{marked(mystring)}
I use babel so I import marked
If you just want to import marked:
import marked from 'marked';
Then call the function in your component:
marked('# Markdown');