File size: 226 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 |
import { createElement } from 'react';
import SiteBlockListComponent from 'calypso/me/site-blocks/main';
export function siteBlockList( context, next ) {
context.primary = createElement( SiteBlockListComponent );
next();
}
|