fix: reduce the amount of section elements being used since most have no headers connected to them

This commit is contained in:
Christian Andolf
2025-04-28 14:47:26 +02:00
parent edc4f0c016
commit 32e95fcbbd
4 changed files with 6 additions and 6 deletions

View File

@@ -1,5 +1,5 @@
import styles from "./container.module.css"
export default function ListContainer({ children }: React.PropsWithChildren) {
return <section className={styles.container}>{children}</section>
return <div className={styles.container}>{children}</div>
}