Skip to content

Commit

Permalink
allocator generates Unshipped strategy now
Browse files Browse the repository at this point in the history
  • Loading branch information
David Moreau committed Jun 14, 2017
1 parent 43cb203 commit bd8fb01
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions client/Doc.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,16 @@ module.exports = React.createClass({
out += this.options.xhtml ? '/>' : '>';
return out;
};
renderer.table = function(header, body) {
return '<table class="table table-bordered">\n'
+ '<thead>\n'
+ header
+ '</thead>\n'
+ '<tbody>\n'
+ body
+ '</tbody>\n'
+ '</table>\n';
};


return {
Expand Down

0 comments on commit bd8fb01

Please sign in to comment.