Product compare application

This commit is contained in:
Ray
2017-07-24 20:34:32 +01:00
parent 74fee1f9c0
commit 02dfba7dd9
6 changed files with 8 additions and 27 deletions

View File

@@ -1,5 +1,4 @@
import React from 'react'
import {Table} from 'reactstrap'
import './index.css'
const Compare = ({products}) =>
@@ -8,7 +7,7 @@ const Compare = ({products}) =>
<div className={(products.length < 2
? 'hidden-xs-up'
: '')}>
<Table>
<table className="table">
<thead className="thead-default">
<tr>
<th></th>
@@ -45,7 +44,7 @@ const Compare = ({products}) =>
)}
</tr>
</tbody>
</Table>
</table>
</div>
</div>
</div>;