Can a Cell
from CellJS be rendered into a specific HTML element? For example, including a Cell
alongside some static HTML that is not managed by cell
. Or having two separate Cell
apps on a single page.
<!DOCTYPE html>
<html>
<header>
<script src="https://cdnjs.cloudflare.com/ajax/libs/cell/1.1.1/cell.min.js"></script>
<script>
var el = {
$cell: true,
$type: "div",
$components: [
// Components
]
}
</script>
</header>
<body>
<h1>A CellJS App</h1>
<div id="cell__container">
<!-- RENDER CELL HERE -->
</div>
</body>
</html>
I have not found any documentation indicating how to achieve this or if it is even possible.