Created
July 17, 2020 19:40
-
-
Save DZuz14/739e6cbcf9cfc89972254fa7b942b3df to your computer and use it in GitHub Desktop.
Handle open addition to Collapsed
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, handleOpen, id }) => ( | |
| <div style={styles} onClick={handleOpen} 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