asi-calculator/components/FormInline/FormInline.tsx

6 lines
179 B
TypeScript
Raw Permalink Normal View History

2024-04-01 15:49:03 +02:00
import styles from './FormInline.module.css'
export function FormInline({ children }: { children: React.ReactNode }) {
return <form className={styles.form}>{children}</form>
}