We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d96466b commit 274f045Copy full SHA for 274f045
example/index.html
@@ -0,0 +1,11 @@
1
+<!DOCTYPE html>
2
+<html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <title>Password Example</title>
6
+ </head>
7
+ <body>
8
+ <div id="app"></div>
9
+ </body>
10
+ <script src="build/main.js" type="text/javascript"></script>
11
+</html>
example/scripts/Root.jsx
@@ -0,0 +1,13 @@
+/* global require, document */
+import React from 'react';
+import ReactDOM from 'react-dom';
+
+import Password from '../../src';
+const Root = () => (
+ <div>
+ <Password />
+ </div>
+);
12
13
+ReactDOM.render(<Root />, document.getElementById('app'));
0 commit comments