Skip to content

Instantly share code, notes, and snippets.

@DZuz14
Created July 17, 2020 19:38
Show Gist options
  • Save DZuz14/146705d9ee7d2fb4fc5807b1765eb7ab to your computer and use it in GitHub Desktop.
Save DZuz14/146705d9ee7d2fb4fc5807b1765eb7ab to your computer and use it in GitHub Desktop.
Collapsed with id prop
import React from 'react'
const Collapsed = ({ children, id }) => (
<div style={styles} data-id={id}>
{children}
</div>
)
const styles = {
color: '#007bff', // blue
background: 'rgba(0, 0, 0, 0.075)', // gray
padding: '15px 15px'
}
export default Collapsed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment