@reactful/create 1.2.0 → 1.2.1

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reactful/create",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "main": "index.js",
5
5
  "type": "module",
6
6
  "description": "reactful scafold tool",
@@ -1,5 +1,7 @@
1
1
  import React from "react"
2
+ import { Hello } from './components'
2
3
 
3
4
  export default () => <>
4
5
  <h2>Minimal Template</h2>
6
+ <Hello name="World" />
5
7
  </>