Spaces:
Runtime error
Runtime error
| import React from 'react'; | |
| import Box from '../box/box.jsx'; | |
| import Selector from './selector.jsx'; | |
| import styles from './asset-panel.css'; | |
| const AssetPanel = props => ( | |
| <Box className={styles.wrapper}> | |
| <Selector | |
| className={styles.selector} | |
| {...props} | |
| /> | |
| <Box className={styles.detailArea}> | |
| {props.children} | |
| </Box> | |
| </Box> | |
| ); | |
| AssetPanel.propTypes = { | |
| ...Selector.propTypes | |
| }; | |
| export default AssetPanel; | |