import React from 'react';
import { registerComponent } from 'meteor/vulcan:lib';
import { Link } from 'react-router';
function Dashboard() {
return (
Debug Dashboard
-
Callbacks
-
Components
-
Emails
-
Groups
-
I18n
-
Routes
-
Settings
);
}
registerComponent({ name: 'DebugDashboard', component: Dashboard, hocs: [] });