Skip to content

Instantly share code, notes, and snippets.

@DZuz14
Created July 17, 2020 19:22
Show Gist options
  • Select an option

  • Save DZuz14/77e94a825d8bba4cc29fdb42ccb99989 to your computer and use it in GitHub Desktop.

Select an option

Save DZuz14/77e94a825d8bba4cc29fdb42ccb99989 to your computer and use it in GitHub Desktop.
Collapsed
import React from 'react'
const Collapsed = ({ children }) => (
<div style={styles}>
{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