Skip to content

Commit f046a67

Browse files
committed
fix: correctly rename to smooth
1 parent cf60fc2 commit f046a67

File tree

119 files changed

+17
-17
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

119 files changed

+17
-17
lines changed

README.md

Lines changed: 1 addition & 1 deletion

examples/emotion/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
"@emotion/core": "^10.0.6",
1010
"react": "^16.8.2",
1111
"react-dom": "^16.8.2",
12-
"smooth-core": "latest"
12+
"smooth": "latest"
1313
}
1414
}

examples/head-elements/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
"dependencies": {
99
"react": "^16.8.2",
1010
"react-dom": "^16.8.2",
11-
"smooth-core": "latest"
11+
"smooth": "latest"
1212
}
1313
}

examples/head-elements/src/pages/index$.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React from 'react'
2-
import Head from 'smooth-core/head'
2+
import Head from 'smooth/head'
33

44
export default () => (
55
<>

examples/hello-world/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
"dependencies": {
99
"react": "^16.8.2",
1010
"react-dom": "^16.8.2",
11-
"smooth-core": "latest"
11+
"smooth": "latest"
1212
}
1313
}

examples/hello-world/src/pages/index$.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React from 'react'
2-
import { Link } from 'smooth-core/router'
2+
import { Link } from 'smooth/router'
33

44
export default () => (
55
<div>

examples/simple/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
"dependencies": {
99
"react": "^16.8.2",
1010
"react-dom": "^16.8.2",
11-
"smooth-core": "latest"
11+
"smooth": "latest"
1212
}
1313
}

examples/with-app-layout/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
"dependencies": {
99
"react": "^16.8.2",
1010
"react-dom": "^16.8.2",
11-
"smooth-core": "latest"
11+
"smooth": "latest"
1212
}
1313
}

examples/with-dynamic-import/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
"dependencies": {
99
"react": "^16.8.2",
1010
"react-dom": "^16.8.2",
11-
"smooth-core": "latest"
11+
"smooth": "latest"
1212
}
1313
}

examples/with-dynamic-import/src/pages/index$.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React from 'react'
2-
import loadable from 'smooth-core/loadable'
2+
import loadable from 'smooth/loadable'
33

44
const DynamicComponent = loadable(() =>
55
import('../components/DynamicComponent'),

0 commit comments

Comments
 (0)