-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.js
More file actions
21 lines (18 loc) · 702 Bytes
/
app.js
File metadata and controls
21 lines (18 loc) · 702 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import './styles/app.scss';
import './images/logo.svg';
import './images/logo-negative.svg';
import angular from 'angular';
import ngAnimate from 'angular-animate';
import ngTouch from 'angular-touch';
import collapse from 'ui-bootstrap4/src/collapse';
import uirouter from '@uirouter/angularjs';
import routing from './app.config';
import AppController from './app.controller';
import home from './components/home';
import blog from './components/blog';
import grids from './components/grids';
import album from './components/album';
angular
.module('app', [ngAnimate, ngTouch, collapse, uirouter, home, blog, grids, album])
.config(routing)
.controller('AppController', AppController);