File tree 3 files changed +2
-7
lines changed
run/nextjs-helloworld/app
3 files changed +2
-7
lines changed Original file line number Diff line number Diff line change 12
12
"node/no-unsupported-features/es-syntax" : [" off" ]
13
13
},
14
14
"parserOptions" : {
15
- "ecmaVersion" : 7 ,
16
15
"ecmaFeatures" : {
17
16
"jsx" : true
18
17
},
Original file line number Diff line number Diff line change 10
10
// distributed under the License is distributed on an "AS IS" BASIS,
11
11
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
12
// See the License for the specific language governing permissions and
13
- // limitations under the License.
13
+ // limitations under the License.;
14
14
15
- import React from 'react'
16
-
17
- export default function RootLayout ( { children } ) {
15
+ export default function RootLayout ( { children} ) {
18
16
return (
19
17
< html lang = "en" >
20
18
< body > { children } </ body >
Original file line number Diff line number Diff line change 12
12
// See the License for the specific language governing permissions and
13
13
// limitations under the License.
14
14
15
- import React from 'react'
16
-
17
15
export default function Page ( ) {
18
16
return < h1 > Hello, Next.js!</ h1 > ;
19
17
}
You can’t perform that action at this time.
0 commit comments