Skip to content

Commit 09ff20a

Browse files
author
plee
committed
Change framework to react
1 parent d97c816 commit 09ff20a

16 files changed

+617
-804
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ release
1313
solution
1414
temp
1515
*.sppkg
16+
.history
17+
.vscode
1618

1719
# Coverage directory used by tools like istanbul
1820
coverage

README.md

+2-73
Original file line numberDiff line numberDiff line change
@@ -1,73 +1,2 @@
1-
# sp-web-part-staffing
2-
3-
## Summary
4-
5-
Short summary on functionality and used technologies.
6-
7-
[picture of the solution in action, if possible]
8-
9-
## Used SharePoint Framework Version
10-
11-
![version](https://img.shields.io/npm/v/@microsoft/sp-component-base/latest?color=green)
12-
13-
## Applies to
14-
15-
- [SharePoint Framework](https://aka.ms/spfx)
16-
- [Microsoft 365 tenant](https://docs.microsoft.com/en-us/sharepoint/dev/spfx/set-up-your-developer-tenant)
17-
18-
> Get your own free development tenant by subscribing to [Microsoft 365 developer program](http://aka.ms/o365devprogram)
19-
20-
## Prerequisites
21-
22-
> Any special pre-requisites?
23-
24-
## Solution
25-
26-
Solution|Author(s)
27-
--------|---------
28-
folder name | Author details (name, company, twitter alias with link)
29-
30-
## Version history
31-
32-
Version|Date|Comments
33-
-------|----|--------
34-
1.1|March 10, 2021|Update comment
35-
1.0|January 29, 2021|Initial release
36-
37-
## Disclaimer
38-
39-
**THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.**
40-
41-
---
42-
43-
## Minimal Path to Awesome
44-
45-
- Clone this repository
46-
- Ensure that you are at the solution folder
47-
- in the command-line run:
48-
- **npm install**
49-
- **gulp serve**
50-
51-
> Include any additional steps as needed.
52-
53-
## Features
54-
55-
Description of the extension that expands upon high-level summary above.
56-
57-
This extension illustrates the following concepts:
58-
59-
- topic 1
60-
- topic 2
61-
- topic 3
62-
63-
> Notice that better pictures and documentation will increase the sample usage and the value you are providing for others. Thanks for your submissions advance.
64-
65-
> Share your web part with others through Microsoft 365 Patterns and Practices program to get visibility and exposure. More details on the community, open-source projects and other activities from http://aka.ms/m365pnp.
66-
67-
## References
68-
69-
- [Getting started with SharePoint Framework](https://docs.microsoft.com/en-us/sharepoint/dev/spfx/set-up-your-developer-tenant)
70-
- [Building for Microsoft teams](https://docs.microsoft.com/en-us/sharepoint/dev/spfx/build-for-teams-overview)
71-
- [Use Microsoft Graph in your solution](https://docs.microsoft.com/en-us/sharepoint/dev/spfx/web-parts/get-started/using-microsoft-graph-apis)
72-
- [Publish SharePoint Framework applications to the Marketplace](https://docs.microsoft.com/en-us/sharepoint/dev/spfx/publish-to-marketplace-overview)
73-
- [Microsoft 365 Patterns and Practices](https://aka.ms/m365pnp) - Guidance, tooling, samples and open-source controls for your Microsoft 365 development
1+
# sp-web-part-react
2+

config/deploy-azure-storage.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/deploy-azure-storage.schema.json",
33
"workingDir": "./release/assets/",
44
"account": "<!-- STORAGE ACCOUNT NAME -->",
5-
"container": "sp-web-part-staffing",
5+
"container": "sp-web-part-react",
66
"accessKey": "<!-- ACCESS KEY -->"
77
}

config/package-solution.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/package-solution.schema.json",
33
"solution": {
4-
"name": "sp-web-part-staffing-client-side-solution",
5-
"id": "dbc29ea6-d852-4e1f-a1cd-016beabb393f",
4+
"name": "sp-web-part-react-client-side-solution",
5+
"id": "f3f8f3a9-93e6-4e22-9442-87b3d3285cdf",
66
"version": "1.0.0.0",
77
"includeClientSideAssets": true,
88
"isDomainIsolated": false,
@@ -15,6 +15,6 @@
1515
}
1616
},
1717
"paths": {
18-
"zippedPackage": "solution/sp-web-part-staffing.sppkg"
18+
"zippedPackage": "solution/sp-web-part-react.sppkg"
1919
}
2020
}

0 commit comments

Comments
 (0)