/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0 */ import React, { ReactNode } from "react"; interface AccordionProps { children: ReactNode; } function Accordion(props: AccordionProps) { return
{props.children}
; } interface ItemProps { id: string; title: string; children: ReactNode; hidden?: boolean; } function Item(props: ItemProps) { return ( <>

); } Accordion.Item = Item; export default Accordion;