blob: 857e76a6e266386d189076aa7c06871029c737cc (
plain)
1
2
3
4
5
6
7
8
|
import ntvApp from "./components/app";
import { State } from "@notive/doc";
const state = new State();
state.create_grid();
console.log(state.to_json());
document.body.append(ntvApp());
|