Angular 2 - Meteor (Socially Tutorial) Step 0 Root Component

Hi,

I am working with the Socially Tutorial using Angular 2. I am on
Step 0 where I need to create the Root Component. I am able to run however console log shows warning on client/app.ts (5, 22): Cannot find module ‘./app.html’

app.ts

import ‘reflect-metadata’;
import { Component } from ‘@angular/core’;
import { bootstrap } from ‘@angular/platform-browser-dynamic’;

import template from ‘./app.html’;

@Component({
selector: ‘app’,
template
})
class Socially { }

bootstrap(Socially);

There is a bug with the sample. See the Step 0.6 commit comments for more details.