Skip to content

Commit 6b83655

Browse files
committed
chore: add react import
1 parent 51993a7 commit 6b83655

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

run/nextjs-helloworld/app/layout.jsx

+2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15+
import React from 'react'
16+
1517
export default function RootLayout({ children }) {
1618
return (
1719
<html lang="en">

run/nextjs-helloworld/app/page.jsx

+2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15+
import React from 'react'
16+
1517
export default function Page() {
1618
return <h1>Hello, Next.js!</h1>;
1719
}

0 commit comments

Comments
 (0)