Skip to content

Commit b08ed43

Browse files
committed
inital commit
0 parents  commit b08ed43

File tree

11 files changed

+1166
-0
lines changed

11 files changed

+1166
-0
lines changed

.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
2+
#
3+
# If you find yourself ignoring temporary files generated by your text editor
4+
# or operating system, you probably want to add a global ignore instead:
5+
# git config --global core.excludesfile '~/.gitignore_global'
6+
7+
/tmp
8+
9+
.DS_Store
10+
/node_modules/*

app.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import React from "react";
2+
import SignaturePad from "./src/index";
3+
4+
React.render(
5+
<SignaturePad />,
6+
document.body
7+
)

index.html

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<html>
2+
<head>
3+
<title>Signature Pad Example</title>
4+
<link rel="stylesheet" type="text/css" href="style.css">
5+
</head>
6+
<body>
7+
<script src="http://localhost:8080/webpack-dev-server.js"></script>
8+
<script src="app.js"></script>
9+
</body>
10+
</html>

0 commit comments

Comments
 (0)