Production
Function that displays a section box with title, and colors specified.
Contact(id) : component
- id: Contact ID [Number]
import Contact from 'contact-component-example';
class MyComponent extends React.Component {
...
render(){
return <Contact id={4} />
}
...
}