Hello,
Any samples of PCF controls built using Angular JS? I am checking if PCF supports Angular JS? If so, i am assuming we cannot use office-ui components?

Hello,
Any samples of PCF controls built using Angular JS? I am checking if PCF supports Angular JS? If so, i am assuming we cannot use office-ui components?
Angular sample -
Office fabric -
Seems angular sample needs update which is WIP. To make the angular sample work you will need to import modules explicitly
import * as ngAnimate from "angular-animate"; import * as ngSanitize from "angular-sanitize"; import * as uiBootstrap from "angular-ui-bootstrap";
angular.module(this._controllerId, ['ngAnimate', 'ngSanitize', 'ui.bootstrap']);
angular.module(this._controllerId, [require('angular-animate'), require('angular-sanitize'), require('angular-ui-bootstrap')]);
Reach out to Nando ( @namohant ) if you have questions.
hemant