You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
488 B
28 lines
488 B
import watch from './watch.js'
|
|
import { renderVariables } from './template.js'
|
|
|
|
const template = `hi {{name}}`
|
|
|
|
const result = renderVariables(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')
|