UNPKG

yahoi

Version:

Yet Another Highly Opinionated Isomorphic Framework

15 lines (11 loc) 227 B
export default class JsonRenderer { constructor(props) { this.data = props.data; } render() { //Todo: JSON validation return new Promise((fulfill, reject) => { fulfill(this.data); }); } }