UNPKG

react-native-markdown-renderer

Version:

Markdown renderer for react-native, with CommonMark spec support + adds syntax extensions & sugar (URL autolinking, typographer).

8 lines (7 loc) 166 B
export default class Token { constructor(type, nesting = 0, children = null) { this.tag = type; this.nesting = nesting; this.children = children; } }