Skip to content

Instantly share code, notes, and snippets.

@JacobHsu
Last active August 29, 2015 14:04
Show Gist options
  • Save JacobHsu/a21979ea237df8eb3463 to your computer and use it in GitHub Desktop.
Save JacobHsu/a21979ea237df8eb3463 to your computer and use it in GitHub Desktop.
#Angular.js - Creating a Store Module
<!DOCTYPE html>
<html ng-app="gemStore">
<head>
<link rel="stylesheet" type="text/css" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" />
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.0/angular.min.js"></script>
</head>
<body>
<h1>{{"Hello, Angular!"}}</h1>
</body>
</html>
var app;
angular.module('gemStore', []);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment