Skip to content

Commit f7927d1

Browse files
committed
init
1 parent 0d68c73 commit f7927d1

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

packages/nextjs/src/components/_common/headers/contactPageHeader/ContactPageHeader.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { BodyShort, Heading } from '@navikt/ds-react';
22
import { Illustration } from 'components/_common/illustration/Illustration';
33
import { ProductDataMixin } from 'types/component-props/_mixins';
4-
import { ContentProps } from 'types/content-props/_content-common';
54

65
// type Props = {
76
// pageProps: Pick<ContentProps, 'type'> & {

packages/nextjs/src/components/pages/contact-step-page/ContactStepPage.tsx

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import React from 'react';
2-
import { ContentCommonProps, ContentType } from '../../../types/content-props/_content-common';
3-
import { PictogramsProps } from '../../../types/content-props/pictograms';
4-
import { ContactPageHeader } from '../../_common/headers/contactPageHeader/ContactPageHeader';
5-
import { ParsedHtml } from '../../_common/parsedHtml/ParsedHtml';
2+
import { ContentCommonProps, ContentType } from 'types/content-props/_content-common';
3+
import { PictogramsProps } from 'types/content-props/pictograms';
4+
import { ContactPageHeader } from 'components/_common/headers/contactPageHeader/ContactPageHeader';
5+
import { ParsedHtml } from 'components/_common/parsedHtml/ParsedHtml';
66

77
export type ContactStepPageProps = ContentCommonProps & {
88
type: ContentType.ContactStepPage;

packages/nextjs/src/types/content-props/_content-common.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import { TemplateProps } from 'types/content-props/template-props';
99
import { SiteProps } from 'types/content-props/site-props';
1010
import { FormsOverviewProps } from 'types/content-props/forms-overview';
1111
import { OverviewPageProps } from 'types/content-props/overview-props';
12+
import { ContactStepPageProps } from 'components/pages/contact-step-page/ContactStepPage';
1213
import { ExternalLinkProps } from './external-link-props';
1314
import { InternalLinkProps } from './internal-link-props';
1415
import { ContentListProps } from './content-list-props';
@@ -44,7 +45,6 @@ import { AreaPageProps, FrontPageNestedProps, FrontPageProps } from './index-pag
4445
import { FormDetailsPageProps } from './form-details';
4546
import { FormIntermediateStepPageProps } from './form-intermediate-step';
4647
import { FallbackPageProps } from './fallback-page-props';
47-
import { ContactStepPageProps } from '../../components/pages/contact-step-page/ContactStepPage';
4848

4949
export enum ContentType {
5050
Error = 'error',

0 commit comments

Comments
 (0)