SHARE
TWEET

Untitled

a guest Oct 6th, 2016 61 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import angular from "angular";
  2. import uiRouter from "angular-ui-router";
  3. import HomeComponent from "./home.component";
  4.  
  5.  
  6. function componentConfig($stateProvider) {
  7.  
  8. }
  9.  
  10. const home = angular
  11.   .module("home", [uiRouter])
  12.   .component("home", HomeComponent)
  13.   .config(componentConfig)
  14.   .name;
  15.  
  16. componentConfig.$inject["$stateProvider"];
  17.  
  18. export default home;
RAW Paste Data
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand
Not a member of Pastebin yet?
Sign Up, it unlocks many cool features!
 
Top