Initial commit.

This commit is contained in:
smartapant 2016-04-20 16:32:12 +03:00
commit 6558ee2fc4
92 changed files with 3193 additions and 0 deletions

10
src/app/index.ts Normal file
View file

@ -0,0 +1,10 @@
// App
export * from './app.component';
export * from './app.service';
import {AppState} from './app.service';
// Application wide providers
export const APP_PROVIDERS = [
AppState
];