authscape 1.0.92 → 1.0.100
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.babelrc +2 -2
- package/package.json +1 -1
- package/src/index.js +12 -12
package/.babelrc
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
{
|
|
2
|
-
"presets": ["@babel/preset-react", "@babel/preset-env"]
|
|
1
|
+
{
|
|
2
|
+
"presets": ["@babel/preset-react", "@babel/preset-env"]
|
|
3
3
|
}
|
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import React, { Component } from 'react';
|
|
2
|
-
|
|
3
|
-
export default class DummyComponent extends Component {
|
|
4
|
-
|
|
5
|
-
render () {
|
|
6
|
-
|
|
7
|
-
return (
|
|
8
|
-
<div>I am a dummy react npm module</div>
|
|
9
|
-
)
|
|
10
|
-
|
|
11
|
-
}
|
|
12
|
-
|
|
1
|
+
import React, { Component } from 'react';
|
|
2
|
+
|
|
3
|
+
export default class DummyComponent extends Component {
|
|
4
|
+
|
|
5
|
+
render () {
|
|
6
|
+
|
|
7
|
+
return (
|
|
8
|
+
<div>I am a dummy react npm module</div>
|
|
9
|
+
)
|
|
10
|
+
|
|
11
|
+
}
|
|
12
|
+
|
|
13
13
|
}
|