Skip to content

Commit fc5605c

Browse files
Fix newline placement in app/page.tsx (#376)
* Fix newline placement in app/page.tsx * Fix import order --------- Co-authored-by: Delba de Oliveira <[email protected]> Co-authored-by: Delba de Oliveira <[email protected]>
1 parent 03e5a41 commit fc5605c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dashboard/final-example/app/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import AcmeLogo from '@/app/ui/acme-logo';
22
import { ArrowRightIcon } from '@heroicons/react/24/outline';
3+
import Link from 'next/link';
34
import { lusitana } from '@/app/ui/fonts';
45
import Image from 'next/image';
5-
import Link from 'next/link';
66

77
export default function Page() {
88
return (

dashboard/starter-example/app/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import AcmeLogo from '@/app/ui/acme-logo';
22
import { ArrowRightIcon } from '@heroicons/react/24/outline';
3-
43
import Link from 'next/link';
4+
55
export default function Page() {
66
return (
77
<main className="flex min-h-screen flex-col p-6">

0 commit comments

Comments
 (0)