<ul class="items">
Should be:
<ul className="items">
Btw, you seem to have missed the new jsx transformer, className has been a thing of the past even in React.
<ul class="items">
Should be:
<ul className="items">