495cd05a7e
Allows for partials to be defined within the current template to allow for localized code reuse as well as for conditional behavior within nested partials. Fixes #1018
7 lines
136 B
JavaScript
7 lines
136 B
JavaScript
import registerInline from './decorators/inline';
|
|
|
|
export function registerDefaultDecorators(instance) {
|
|
registerInline(instance);
|
|
}
|
|
|