JSFiddle - React, Tailwind, and code Playground

HTML

<script src="https://github.com/downloads/SteveSanderson/knockout/knockout-1.3.0beta.js"></script>
<h3>Products</h3>

<ul >
    <li>
        <strong data-bind="text: name"></strong>
        <em data-bind="if: {manufacturer === 'Son'} ">
            &mdash; made by <span data-bind="text: manufacturer.company"></span>
        </em>
    </li>
</ul>

CSS

body { font-family: Arial, Helvetica; margin: 5px; }
h3 { margin-top: 0 }

JavaScript

function appViewModel() {
    this.products = ko.observableArray([
        { name: "XBox", manufacturer: { company: "Microsoft" } },
        { name: "PlayStation", manufacturer: { company: "Sony" }  },
        { name: "Banana", manufacturer: null },
        { name: "Wii", manufacturer: { company: "Nintendo" }  }
    ]);
};

ko.applyBindings(new appViewModel());