Client
new Blaze.Template([viewName], renderFunction)
import { Blaze } from 'meteor/blaze'
Source Constructor for a Template, which is used to construct Views with particular name and content.
Arguments
- viewName String
-
Optional. A name for Views constructed by this Template. See
view.name
. - renderFunction Function
-
A function that returns renderable content. This function is used as the
renderFunction
for Views constructed by this Template.
Please login to continue.