Skip to content

Commit 89c8071

Browse files
committed
fix: .../templates/*/app/layout.* import order
1 parent 400c679 commit 89c8071

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

packages/create-next-app/templates/app-tw/js/app/layout.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import './globals.css'
21
import { Inter } from 'next/font/google'
2+
import './globals.css'
33

44
const inter = Inter({ subsets: ['latin'] })
55

packages/create-next-app/templates/app-tw/ts/app/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import './globals.css'
21
import type { Metadata } from 'next'
32
import { Inter } from 'next/font/google'
3+
import './globals.css'
44

55
const inter = Inter({ subsets: ['latin'] })
66

packages/create-next-app/templates/app/js/app/layout.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import './globals.css'
21
import { Inter } from 'next/font/google'
2+
import './globals.css'
33

44
const inter = Inter({ subsets: ['latin'] })
55

packages/create-next-app/templates/app/ts/app/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import './globals.css'
21
import type { Metadata } from 'next'
32
import { Inter } from 'next/font/google'
3+
import './globals.css'
44

55
const inter = Inter({ subsets: ['latin'] })
66

0 commit comments

Comments
 (0)