/* * Copyright (c) 2021 Nordic Semiconductor ASA * * SPDX-License-Identifier: LicenseRef-Nordic-4-Clause */ import React, { type ReactNode } from 'react'; import Card from '../Card/Card'; export interface DocumentationCardProps { documentationSections: Array; className?: string; } export default ({ documentationSections, className, }: DocumentationCardProps) => ( {documentationSections} );