JSFiddle - React, Tailwind, and code Playground

HTML

<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0a4.1/jquery.mobile-1.0a4.1.min.css">
<script src="http://code.jquery.com/jquery-1.5.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.0a4.1/jquery.mobile-1.0a4.1.min.js"></script>
<script src="https://github.com/downloads/SteveSanderson/knockout/knockout-1.2.1.js"></script>
<!DOCTYPE html>
<html>
  <head>
    <title>List Items</title>
  </head>
  <body>
    <div data-role="page" id="master">
      <div data-role="header">
        <h1>List Items</h1>
      </div>
      <div data-role="content" id="content">
        <ul>
          <li>item 1</li>
          <li>item 2</li>
        </ul>
      </div>
    </div>
  </body>
</html>

CSS

li {
    list-style-type: square;
    margin-left: 10px;
}