Vals using react-dom
Description from the NPM package:
React package for working with the DOM.
vawogbemi
lhc
Email
Let Him Cook Query database (instantdb) with natural langauge in email. This just a demo sometimes can be inconsistent. Email: vawogbemi.lhc@valtown.email const _schema = i.schema({
entities: {
$users: i.entity({
email: i.string().unique().indexed(),
}),
goals: i.entity({
title: i.string(),
}),
todos: i.entity({
title: i.string(),
}),
},
links: {
goalsTodos: {
forward: {
on: "goals",
has: "many",
label: "todos",
},
reverse: {
on: "todos",
has: "many",
label: "goals",
},
},
},
})
1