File size: 366 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import GetAppsBlock from 'calypso/blocks/get-apps';
import Main from 'calypso/components/main';
import PageViewTracker from 'calypso/lib/analytics/page-view-tracker';
export const GetApps = () => {
return (
<Main className="get-apps">
<PageViewTracker path="/me/get-apps" title="Me > Get Apps" />
<GetAppsBlock />
</Main>
);
};
export default GetApps;
|