JSFiddle - React, Tailwind, and code Playground

HTML

<div data-bind="foreach: elements">
    <div data-bind="if: type == 'text', text: info"></div>
</div>

JavaScript

function ViewModel() {
    var self = this;
    this.elements = ko.observableArray([{
        type: 'text',
        info: 'Hello'
    }]);
}

ko.applyBindings(new ViewModel());