import watch from './watch.js' import { renderVariables, renderConditionals } from './template.js' const template = ` hi {{#if false}} matt {{#endif}} ` const result = renderConditionals(template, { name:'matt'}) console.log(result); //const state = watch( //{ //name: 'matt', //friend: { //name: 'bob' //}, //stuff: ['bag', 123, true] //}, //() => { //console.log(state); //} //) //console.log(state); //state.name = 'Matthew' //state.friend.name = 'Bilbo' //state.stuff[0] = 'fun' //state.stuff.push('weeee')