6 lines
131 B
JavaScript
6 lines
131 B
JavaScript
import { Router } from 'meteor/iron:router';
|
|
|
|
Router.route('/playground', function() {
|
|
this.render('componentPlayground');
|
|
});
|