99982c0391
• Finished: - updating the reformatting of propTypes and set redux, intl functions to end of component • Removed: - Gif implementation
9 lines
213 B
JavaScript
9 lines
213 B
JavaScript
import React from 'react'
|
|
|
|
const Block = ({ children }) => (
|
|
<div className={[_s.d, _s.boxShadowBlock, _s.bgPrimary, _s.overflowHidden, _s.radiusSmall].join(' ')}>
|
|
{children}
|
|
</div>
|
|
)
|
|
|
|
export default Block |