bricks/examples/tables.html

26 lines
334 B
HTML
Raw Normal View History

2023-09-14 10:28:07 +08:00
<html>
<head>
<link rel="stylesheet" href="/bricks/css/bricks.css">
</head>
<body>
<script src="/bricks/bricks.js"></script>
<script>
const opts =
{
"widget": {
"widgettype":"urlwidget",
"options":{
"url":"tables.json"
}
}
}
;
const app = new BricksApp(opts);
app.run();
</script>
</body>
</html>