balmet.com

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

index.js (254B)


      1 import Sidebar from './sidebar'
      2 import { ReduxTemplatesIcon } from '~redux-templates/icons';
      3 if (wp.plugins) {
      4 	const { registerPlugin } = wp.plugins;
      5 
      6 	
      7 
      8 	registerPlugin( 'redux-templates-share', {
      9 		icon: ReduxTemplatesIcon,
     10 		render: Sidebar,
     11 	} );
     12 }