@mjhls/mjh-framework 1.0.1 → 1.0.2

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.
Files changed (2) hide show
  1. package/README.md +7 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -15,12 +15,15 @@ npm install --save mjh-framework
15
15
  ```jsx
16
16
  import React, { Component } from 'react'
17
17
 
18
- import MyComponent from 'mjh-framework'
18
+ import { NavMagazine, DeckQueue } from 'mjh-framework'
19
19
 
20
- class Example extends Component {
21
- render () {
20
+ export default class App extends Component {
21
+ render() {
22
22
  return (
23
- <MyComponent />
23
+ <div>
24
+ <NavMagazine />
25
+ <DeckQueue />
26
+ </div>
24
27
  )
25
28
  }
26
29
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mjhls/mjh-framework",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Foundation Framework",
5
5
  "author": "mjh-framework",
6
6
  "license": "MIT",