/* * Copyright (c) 2015 Nordic Semiconductor ASA * * SPDX-License-Identifier: LicenseRef-Nordic-4-Clause */ import React, { type ReactNode } from 'react'; interface Props { title?: string; children?: ReactNode; } export default ({ children, title }: Props) => (