Created
July 17, 2020 19:38
-
-
Save DZuz14/146705d9ee7d2fb4fc5807b1765eb7ab to your computer and use it in GitHub Desktop.
Collapsed with id prop
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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