Add resultCard component for standard display of a card search result

This commit is contained in:
John R. Supplee 2021-01-13 21:46:18 +02:00
parent 391c0606d1
commit f00395a6b6
4 changed files with 56 additions and 22 deletions

View file

@ -0,0 +1,11 @@
Template.resultCard.helpers({
userId() {
return Meteor.userId();
},
});
BlazeComponent.extendComponent({
events() {
return [{}];
},
}).register('resultCard');