```javascript export const Component = config => { return target => { config.controller = target; return config; }; }; @Component({ bindings: { }, controllerAs: 'taskItem', template }) export class TaskItemComponent { } ```