Skip to content

Instantly share code, notes, and snippets.

@ypcode
Created July 13, 2017 08:52
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save ypcode/bfa77639b9c0b70a0da4d715fabe14d7 to your computer and use it in GitHub Desktop.
// ...
import { SPComponentLoader } from '@microsoft/sp-loader';
// ...
export default class KanbanBoardWebPart extends BaseClientSideWebPart<IKanbanBoardWebPartProps> {
// ...
constructor() {
super();
SPComponentLoader.loadCss('https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.min.css');
}
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment