JSFiddle - React, Tailwind, and code Playground
HTML
<!DOCTYPE html>
<html ng-app="myApp">
<head>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.0.1/angular.min.js"></script>
<script src="//raw.github.com/angular/angular.js/master/src/ngCookies/cookies.js"></script>
</head>
<body ng-controller="CookieCtrl">
Cookie Value: {{cookieValue}}
</body>
</html>
JavaScript
angular.module('myApp', ['ngCookies']);
function CookieCtrl($scope, $cookieStore) {
$cookieStore.put('City', 'London');
$scope.cookieValue = $cookieStore.get('City');
}