mirror of
https://github.com/pnp/sp-dev-fx-webparts.git
synced 2025-03-03 18:29:17 +00:00
11 lines
875 B
HTML
11 lines
875 B
HTML
<div style="background-color: CadetBlue; padding: 20px;">
|
|
<h3>My Planner Tasks - Microsoft Graph Toolkit</h3>
|
|
<p>Isolated mode: ⚠ mandatory. Find more samples on <a href="https://mgt.dev/?path=/story/overview--page" target="_blank">MGT Playground</a>. MGT components require API permissions, see the <a href="https://docs.microsoft.com/en-us/graph/toolkit/overview">Microsoft docs</a> for more info.</p>
|
|
<script>
|
|
function setProvider() {mgt.Providers.globalProvider = new mgt.SharePointProvider(props.context);}
|
|
</script>
|
|
<script src="https://unpkg.com/@microsoft/mgt/dist/bundle/wc/webcomponents-loader.js" type="text/javascript"></script>
|
|
<script src="https://unpkg.com/@microsoft/mgt/dist/bundle/mgt.es6.js" type="text/javascript" onload="setProvider()"></script>
|
|
<mgt-person person-query="me" view="twoLines"></mgt-person>
|
|
<mgt-tasks></mgt-tasks>
|
|
</div> |