Skip to content

Commit 164dab1

Browse files
committed
added boilerplate template
consist of: - App.js (default) - page template
1 parent f13a964 commit 164dab1

File tree

14 files changed

+17265
-0
lines changed

14 files changed

+17265
-0
lines changed

.eslintcache

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
[{"E:\\Github\\react-windows-ui-boilerplate\\src\\index.js":"1","E:\\Github\\react-windows-ui-boilerplate\\src\\App.js":"2","E:\\Github\\react-windows-ui-boilerplate\\src\\pages\\page1\\index.js":"3","E:\\Github\\react-windows-ui-boilerplate\\src\\pages\\page2\\index.js":"4"},{"size":349,"mtime":1625935656044,"results":"5","hashOfConfig":"6"},{"size":1299,"mtime":1626004645575,"results":"7","hashOfConfig":"6"},{"size":1248,"mtime":1626004613640,"results":"8","hashOfConfig":"6"},{"size":395,"mtime":1625940471997,"results":"9","hashOfConfig":"6"},{"filePath":"10","messages":"11","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"12"},"171caqg",{"filePath":"13","messages":"14","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"15","messages":"16","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"17","messages":"18","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"12"},"E:\\Github\\react-windows-ui-boilerplate\\src\\index.js",[],["19","20"],"E:\\Github\\react-windows-ui-boilerplate\\src\\App.js",[],"E:\\Github\\react-windows-ui-boilerplate\\src\\pages\\page1\\index.js",[],"E:\\Github\\react-windows-ui-boilerplate\\src\\pages\\page2\\index.js",[],{"ruleId":"21","replacedBy":"22"},{"ruleId":"23","replacedBy":"24"},"no-native-reassign",["25"],"no-negated-in-lhs",["26"],"no-global-assign","no-unsafe-negation"]

.gitignore

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
8+
# testing
9+
/coverage
10+
11+
# production
12+
/build
13+
14+
# misc
15+
.DS_Store
16+
.env.local
17+
.env.development.local
18+
.env.test.local
19+
.env.production.local
20+
21+
npm-debug.log*
22+
yarn-debug.log*
23+
yarn-error.log*
24+
25+
debug.log

package-lock.json

Lines changed: 16994 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
{
2+
"name": "react-windows-ui-boilerplate",
3+
"version": "1.0.0",
4+
"private": true,
5+
"description": "Build full featured Windows fluent UI apps using ReactJS.",
6+
"keywords": [
7+
"react",
8+
"fluentui",
9+
"windows10",
10+
"user-interface"
11+
],
12+
"homepage": "https://virtualvivek.github.io/react-windows-ui/",
13+
"bugs": {
14+
"url": "https://github.com/virtualvivek/react-windows-ui/issues"
15+
},
16+
"license": "MIT",
17+
"author": {
18+
"name": "Author",
19+
"email": "[email protected]"
20+
},
21+
"dependencies": {
22+
"react": "^17.0.1",
23+
"react-dom": "^17.0.1",
24+
"react-router-dom": "^5.2.0",
25+
"react-scripts": "4.0.1",
26+
"react-windows-ui": "^2.0.8",
27+
"web-vitals": "^0.2.4"
28+
},
29+
"repository": {
30+
"type": "git",
31+
"url": "git+https://github.com/virtualvivek/react-windows-ui.git"
32+
},
33+
"scripts": {
34+
"start": "react-scripts start",
35+
"build": "react-scripts build",
36+
"predeploy": "npm run build",
37+
"eject": "react-scripts eject"
38+
},
39+
"eslintConfig": {
40+
"extends": [
41+
"react-app",
42+
"react-app/jest"
43+
]
44+
},
45+
"browserslist": {
46+
"production": [
47+
">0.2%",
48+
"not dead",
49+
"not op_mini all"
50+
],
51+
"development": [
52+
"last 1 chrome version",
53+
"last 1 firefox version",
54+
"last 1 safari version"
55+
]
56+
}
57+
}

public/favicon.ico

66.1 KB
Binary file not shown.

public/index.html

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8" />
5+
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1" />
7+
<meta name="theme-color" content="#EEE" />
8+
<meta name="mobile-web-app-capable" content="yes">
9+
<meta
10+
name="description"
11+
content="Create Windows UI Apps using ReactJS"
12+
/>
13+
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
14+
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
15+
<title>React Windows UI Boilerplate</title>
16+
</head>
17+
<body style="margin: 0;">
18+
<noscript>You need to enable JavaScript to run this app.</noscript>
19+
<div id="root">
20+
<div style="background-color: #0078D7;height: 100vh;align-items: center;display: flex;">
21+
<h1 style="margin: 0 auto;color:white">
22+
react-windows-ui-boilerplate
23+
</h1>
24+
</div>
25+
</div>
26+
</body>
27+
</html>

public/logo192.png

5.22 KB
Loading

public/logo512.png

9.44 KB
Loading

public/manifest.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"short_name": "React Win UI",
3+
"name": "React Windows UI",
4+
"icons": [
5+
{
6+
"src": "favicon.ico",
7+
"sizes": "64x64 32x32 24x24 16x16",
8+
"type": "image/x-icon"
9+
},
10+
{
11+
"src": "logo192.png",
12+
"type": "image/png",
13+
"sizes": "192x192"
14+
},
15+
{
16+
"src": "logo512.png",
17+
"type": "image/png",
18+
"sizes": "512x512"
19+
}
20+
],
21+
"start_url": ".",
22+
"display": "standalone",
23+
"theme_color": "#000000",
24+
"background_color": "#ffffff"
25+
}

public/robots.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# https://www.robotstxt.org/robotstxt.html
2+
User-agent: *
3+
Disallow:

0 commit comments

Comments
 (0)