jrs-react 1.0.0 → 1.0.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jrs-react",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "",
5
5
  "main": "build/index.js",
6
6
  "module": "build/index.es.js",
@@ -0,0 +1,7 @@
1
+ import JRSubmit from "../JRSubmit";
2
+
3
+ export default class JRFields extends JRSubmit {
4
+ render(){
5
+ return 'JRFields'
6
+ }
7
+ }
@@ -0,0 +1,12 @@
1
+ import React from "react";
2
+
3
+ export default class JRSubmit extends React.Component {
4
+ render(){
5
+ return 'JRSubmit'
6
+ }
7
+ }
8
+
9
+
10
+ // function Test(){
11
+ // return <div>AAAAAAAAA</div>
12
+ // }
@@ -0,0 +1,7 @@
1
+ import JRSubmit from "../JRSubmit";
2
+
3
+ export default class JRTable extends JRSubmit {
4
+ render(){
5
+ return 'JRTable'
6
+ }
7
+ }
@@ -0,0 +1,14 @@
1
+ import React from "react";
2
+
3
+ class Test extends React.Component {
4
+ render(){
5
+ return 'JRSubmit'
6
+ }
7
+ }
8
+
9
+
10
+ // function Test(){
11
+ // return <div>AAAAAAAAA</div>
12
+ // }
13
+
14
+ export { Test}
package/src/index.js ADDED
@@ -0,0 +1,9 @@
1
+ import JRSubmit from './components/JRSubmit'
2
+ import JRFields from './components/JRFields/JRFields'
3
+ import JRTable from './components/JRTable/JRTable'
4
+ export {
5
+ JRSubmit
6
+ ,JRFields
7
+ ,JRTable
8
+
9
+ }