926e78a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import React from 'react'; const Showcase = ({children}) => ( <div style={{ margin: '20px 0', overflow: 'hidden', borderRadius: '5px', backgroundColor: 'silver', width: '90%' }}> {children} </div> ); export default Showcase