soiz1's picture
Upload 2891 files
6bcb42f verified
raw
history blame contribute delete
486 Bytes
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;