Skip to content

Commit 5d66b4a

Browse files
Merge pull request #12 from SyncfusionExamples/798905
798905: React sample for Mail merge
2 parents 04fc4e6 + 94cdfd7 commit 5d66b4a

5 files changed

Lines changed: 995 additions & 0 deletions

File tree

React/package.json

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
"name": "czdq44po--run",
3+
"version": "0.0.0",
4+
"private": true,
5+
"dependencies": {
6+
"react": "18.1.0",
7+
"react-dom": "18.1.0",
8+
"@syncfusion/ej2-base": "32.1.23",
9+
"@syncfusion/ej2-react-base": "32.1.22",
10+
"@syncfusion/ej2-documenteditor": "32.1.23",
11+
"@syncfusion/ej2-react-documenteditor": "32.1.23",
12+
"@syncfusion/ej2-popups": "32.1.19",
13+
"@syncfusion/ej2-react-popups": "32.1.19",
14+
"@syncfusion/ej2-navigations": "32.1.19",
15+
"@syncfusion/ej2-react-navigations": "32.1.19",
16+
"@syncfusion/ej2-lists": "32.1.23",
17+
"@syncfusion/ej2-react-lists": "32.1.23",
18+
"@syncfusion/ej2-buttons": "32.1.23",
19+
"@syncfusion/ej2-splitbuttons": "32.1.22"
20+
},
21+
"scripts": {
22+
"start": "react-scripts start",
23+
"build": "react-scripts build",
24+
"test": "react-scripts test --env=jsdom",
25+
"eject": "react-scripts eject"
26+
},
27+
"devDependencies": {
28+
"react-scripts": "latest"
29+
},
30+
"browserslist": {
31+
"production": [
32+
">0.2%",
33+
"not dead",
34+
"not op_mini all"
35+
],
36+
"development": [
37+
"last 1 chrome version",
38+
"last 1 firefox version",
39+
"last 1 safari version"
40+
]
41+
}
42+
}

React/public/index.html

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Syncfusion React Sample</title>
5+
<meta charset="utf-8" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no" />
7+
<meta http-equiv="x-ua-compatible" content="ie=edge">
8+
<meta name="description" content="Syncfusion React UI Components" />
9+
<meta name="author" content="Syncfusion" />
10+
<link href="https://cdn.syncfusion.com/ej2/32.1.19/tailwind3.css" rel="stylesheet">
11+
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" />
12+
</head>
13+
14+
<body class="tailwind3">
15+
<style>
16+
.control-section
17+
{
18+
margin-top: 10px;
19+
}
20+
</style>
21+
<div id='sample'>
22+
</body>
23+
</html>

0 commit comments

Comments
 (0)