-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (41 loc) · 923 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html>
<head>
<link
rel="stylesheet"
href="https://unpkg.com/@salesforce-ux/[email protected]/assets/styles/salesforce-lightning-design-system.css"
/>
</head>
<body>
<div id="root"></div>
<script>
window.migrationAppPackConfig = {
fileUrls: [
"./data/Account.csv",
"./data/Contact.csv",
"./data/Opportunity.csv",
"./data/CustomObject__c.csv",
],
inputs: [
{
object: "Account",
fileIndex: 0,
},
{
object: "Contact",
fileIndex: 1,
},
{
object: "Opportunity",
fileIndex: 2,
},
{
object: "CustomObject__c",
fileIndex: 3,
},
],
};
</script>
<script src="./migration-app-pack.js"></script>
</body>
</html>