import React from 'react'; import { registerComponent } from 'meteor/vulcan:lib'; import { Link } from 'react-router'; function Dashboard() { return (

Debug Dashboard

); } registerComponent({ name: 'DebugDashboard', component: Dashboard, hocs: [] });