Added Accordion and AccordionItem Components

This commit is contained in:
2025-10-03 17:57:41 +02:00
parent 70e226057a
commit 3a79f59f03
17 changed files with 225 additions and 26 deletions

View File

@@ -12,7 +12,7 @@ interface RowProps {
children: React.ReactNode;
}
export function Row({ style, children }: RowProps) {
export default function Row({ style, children }: RowProps) {
return (
<div
className={`${styles.row}`}