create-pb-app 1.1.4 → 1.1.5

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/package.json +1 -1
  2. package/src/templates.js +2 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-pb-app",
3
- "version": "1.1.4",
3
+ "version": "1.1.5",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "create-pb-app": "./src/cli.js"
package/src/templates.js CHANGED
@@ -120,12 +120,10 @@ render(<App />, document.body);
120
120
  },
121
121
  {
122
122
  filePath: 'pages/home/home.tsx',
123
- content: `import { Text } from 'components-test-pb';
124
-
125
- export function Home() {
123
+ content: `export function Home() {
126
124
  return (
127
125
  <>
128
- <Text>Hello World</Text>
126
+ <div>Hello World</div>
129
127
  </>
130
128
  );
131
129
  }