+}
+
+export const Foedested = ({ foedestedListe }: FoedestedTypes) => {
+ if (!foedestedListe || foedestedListe.length < 1) {
+ return null
+ }
+
+ return (
+
+
+ Fødested
+
+ {(foedested: FoedestedData, idx: number) => {
+ return (
+
+ {isEmpty(foedested, ['kilde', 'master']) ? (
+
+ ) : (
+ <>
+
+
+
+ >
+ )}
+
+ )
+ }}
+
+
+
+ )
+}
diff --git a/apps/dolly-frontend/src/main/js/src/components/fagsystem/pdlf/bestilling/partials/Foedselsdato.tsx b/apps/dolly-frontend/src/main/js/src/components/fagsystem/pdlf/bestilling/partials/Foedselsdato.tsx
new file mode 100644
index 00000000000..2d554118d0e
--- /dev/null
+++ b/apps/dolly-frontend/src/main/js/src/components/fagsystem/pdlf/bestilling/partials/Foedselsdato.tsx
@@ -0,0 +1,42 @@
+import { ErrorBoundary } from '@/components/ui/appError/ErrorBoundary'
+import { BestillingTitle, EmptyObject } from '@/components/bestilling/sammendrag/Bestillingsdata'
+import { DollyFieldArray } from '@/components/ui/form/fieldArray/DollyFieldArray'
+import { FoedselsdatoData } from '@/components/fagsystem/pdlf/PdlTypes'
+import React from 'react'
+import { isEmpty } from '@/components/fagsystem/pdlf/form/partials/utils'
+import { TitleValue } from '@/components/ui/titleValue/TitleValue'
+import { formatDate } from '@/utils/DataFormatter'
+
+type FoedselsdatoTypes = {
+ foedselsdatoListe: Array
+}
+
+export const Foedselsdato = ({ foedselsdatoListe }: FoedselsdatoTypes) => {
+ if (!foedselsdatoListe || foedselsdatoListe.length < 1) {
+ return null
+ }
+
+ return (
+
+
+ Fødselsdato
+
+ {(foedselsdato: FoedselsdatoData, idx: number) => {
+ return (
+
+ {isEmpty(foedselsdato, ['kilde', 'master']) ? (
+
+ ) : (
+ <>
+
+
+ >
+ )}
+
+ )
+ }}
+
+
+
+ )
+}