From fc5605ca55afff97a325eee39d61782cef3b1094 Mon Sep 17 00:00:00 2001 From: Shinya Fujino Date: Thu, 16 Nov 2023 23:48:36 +0900 Subject: [PATCH] Fix newline placement in app/page.tsx (#376) * Fix newline placement in app/page.tsx * Fix import order --------- Co-authored-by: Delba de Oliveira Co-authored-by: Delba de Oliveira <32464864+delbaoliveira@users.noreply.github.com> --- dashboard/final-example/app/page.tsx | 2 +- dashboard/starter-example/app/page.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dashboard/final-example/app/page.tsx b/dashboard/final-example/app/page.tsx index 6f4d9e0..2758e2c 100644 --- a/dashboard/final-example/app/page.tsx +++ b/dashboard/final-example/app/page.tsx @@ -1,8 +1,8 @@ import AcmeLogo from '@/app/ui/acme-logo'; import { ArrowRightIcon } from '@heroicons/react/24/outline'; +import Link from 'next/link'; import { lusitana } from '@/app/ui/fonts'; import Image from 'next/image'; -import Link from 'next/link'; export default function Page() { return ( diff --git a/dashboard/starter-example/app/page.tsx b/dashboard/starter-example/app/page.tsx index 1e3989e..8e0184f 100644 --- a/dashboard/starter-example/app/page.tsx +++ b/dashboard/starter-example/app/page.tsx @@ -1,7 +1,7 @@ import AcmeLogo from '@/app/ui/acme-logo'; import { ArrowRightIcon } from '@heroicons/react/24/outline'; - import Link from 'next/link'; + export default function Page() { return (