Files
old-kivi/web/components/Listings.js
Edin Dazdarevic 8f613f1f73 Initial commit
2016-11-07 11:17:48 +01:00

23 lines
464 B
JavaScript

import React from 'react';
export default class Listings extends React.Component {
render() {
return (
<div className="listings">
<div className="listings-row">
one filter
</div>
<div className="listings-row">
two filter
</div>
<div className="listings-row">
two filter
</div>
<div className="listings-row">
two filter
</div>
</div>)
}
}