File "index.js"

Full path: /home/webcknlt/admissiontell.com/wp-content/plugins/generateblocks/src/components/simple-select/index.js
File size: 277 B (277 B bytes)
MIME-type: text/x-java
Charset: utf-8

Download   Open   Edit   Advanced Editor &nnbsp; Back

import AdvancedSelect from '../advanced-select';

export default ( props ) => {
	const { options, value } = props;
	return (
		<AdvancedSelect
			{ ...props }
			id={ 'gblocks-simple-select' }
			value={ options.filter( ( option ) => ( option.value === value ) ) }
		/>
	);
};