Created
December 20, 2017 20:15
-
-
Save Vintaurus/6379136e2fd0dfb5ac1aef271b5cfda6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%-- The following 4 lines are ASP.NET directives needed when using SharePoint components --%> | |
<%@ Page Inherits="Microsoft.SharePoint.WebPartPages.WebPartPage, Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" MasterPageFile="~masterurl/default.master" Language="C#" %> | |
<%@ Register TagPrefix="Utilities" Namespace="Microsoft.SharePoint.Utilities" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> | |
<%@ Register TagPrefix="WebPartPages" Namespace="Microsoft.SharePoint.WebPartPages" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> | |
<%@ Register TagPrefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> | |
<%-- The markup and script in the following Content element will be placed in the <head> of the page --%> | |
<asp:Content ContentPlaceHolderID="PlaceHolderAdditionalPageHead" runat="server"> | |
<SharePoint:ScriptLink name="sp.js" runat="server" OnDemand="true" LoadAfterUI="true" Localizable="false" /> | |
<meta name="WebPartPageExpansion" content="full" /> | |
<!-- Add your CSS styles to the following file --> | |
<link rel="Stylesheet" type="text/css" href="../Content/App.css" /> | |
<!-- Add your JavaScript to the following file --> | |
<script src="../Scripts/react-0.14.0.js"></script> | |
<script src="../Scripts/react-dom-0.14.0.js"></script> | |
</asp:Content> | |
<%-- The markup in the following Content element will be placed in the TitleArea of the page --%> | |
<asp:Content ContentPlaceHolderID="PlaceHolderPageTitleInTitleArea" runat="server"> | |
Page Title | |
</asp:Content> | |
<%-- The markup and script in the following Content element will be placed in the <body> of the page --%> | |
<asp:Content ContentPlaceHolderID="PlaceHolderMain" runat="server"> | |
<div id="message"> </div> | |
<script src="../Scripts/build/HelloAddIn.js"></script> | |
</asp:Content> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment