I'm not able to render simple angular material components even after including all the necessary dependencies. HTML
<div ng-app="MyApp" layout="row">
<md-button>Button</md-button>
</div>
JS
angular.module('MyApp', ['ngMaterial']);
Here's the link with all the dependencies included: https://jsfiddle.net/rxby6cac/3/
Confused... What's the issue with this simple code?
