// Copyright (c) Mysten Labs, Inc. // Modifications Copyright (c) 2024 IOTA Stiftung // SPDX-License-Identifier: Apache-2.0 import { Heading } from '../ui/Heading.js'; import { Text } from '../ui/Text.js'; import * as styles from './InfoSection.css.js'; type InfoSectionProps = { title: string; children: string; }; export function InfoSection({ title, children }: InfoSectionProps) { return (
{title} {children}
); }