File size: 489 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import page from '@automattic/calypso-router';
import { makeLayout, render as clientRender } from 'calypso/controller';
import controller from './controller';
import './style.scss';
export default function () {
// not putting category or email address in params, since `page`
// currently double-decodes the URI before doing route matching
// https://github.com/visionmedia/page.js/issues/306
page( '/mailing-lists/unsubscribe', controller.unsubscribe, makeLayout, clientRender );
}
|