From 8cdc4a4ffb7aac4ac89bb5d6e9a6a13621aac91d Mon Sep 17 00:00:00 2001 From: Andreas Hufler Date: Thu, 17 Oct 2024 11:09:01 +0200 Subject: [PATCH] fix import order --- src/components/section/SectionHeader/SectionHeader.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/section/SectionHeader/SectionHeader.tsx b/src/components/section/SectionHeader/SectionHeader.tsx index 004ddc78..f9359d80 100644 --- a/src/components/section/SectionHeader/SectionHeader.tsx +++ b/src/components/section/SectionHeader/SectionHeader.tsx @@ -1,7 +1,7 @@ import { ReactNode } from 'react' import { SectionHeaderArea } from './SectionHeaderArea' -import { SectionHeaderTitle } from './SectionHeaderTitle' import { SectionHeaderRow, SectionHeaderRowLayout } from './SectionHeaderRow' +import { SectionHeaderTitle } from './SectionHeaderTitle' export type SectionHeaderProps = { title: ReactNode