File tree Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Original file line number Diff line number Diff line change 5
5
# git config --global core.excludesfile '~/.gitignore_global'
6
6
7
7
/tmp
8
+ /build
8
9
9
10
.DS_Store
10
11
/node_modules /*
Original file line number Diff line number Diff line change
1
+ # React Signature Pad
2
+ A [ signature pad] ( https://github.com/szimek/signature_pad ) implementation for react.
3
+
4
+ # Usage
5
+
6
+ ``` javascript
7
+ var React = require (' react' );
8
+ var SignaturePad = require (' react-signature-pad' );
9
+
10
+ React .render (
11
+ < SignaturePad / > ,
12
+ document .body
13
+ )
14
+ ```
15
+
16
+ # CSS
17
+ In order to make the signature pad work correctly you will need the css as well. All the relevant styles are in [ this file] ( style.css ) .
18
+
19
+ # Example
20
+ ``` bash
21
+ $ npm start
22
+ ```
23
+ Then navigate to http://localhost:8080/ in your browser and you should be able to see the signature pad in action.
You can’t perform that action at this time.
0 commit comments