HOME


Mini Shell 1.0
DIR: /home/otwalrll/satojafurnitures.com/wp-content/themes/blocksy/static/js/options/options/
Upload File :
Current File : /home/otwalrll/satojafurnitures.com/wp-content/themes/blocksy/static/js/options/options/ct-radio.js
import { createElement } from '@wordpress/element'

import BlocksyRadio from './ct-radio/BlocksyRadio'
import GutenbergRadio from './ct-radio/GutenbergRadio'

const Radio = (props) => {
	const { purpose } = props

	if (purpose === 'gutenberg') {
		return <GutenbergRadio {...props} />
	}

	return <BlocksyRadio {...props} />
}

Radio.supportedPurposes = ['default', 'gutenberg']

export default Radio