Skip to content

Instantly share code, notes, and snippets.

@JavierPons
Created September 5, 2017 18:23
Show Gist options
  • Save JavierPons/97b13965b5fe72b398dce9ad46bd0c60 to your computer and use it in GitHub Desktop.
Save JavierPons/97b13965b5fe72b398dce9ad46bd0c60 to your computer and use it in GitHub Desktop.
Ravenous
import React from 'react';
import './businessList.css';
import Business from '../Business/Business';
class BusinessList extends React.Component {
render(
return (
<div className="BusinessList">
<Business />
<Business />
<Business />
<Business />
<Business />
<Business />
</div>
)
)
};
export default BusinessList;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment