commons/admin/src/components/atoms/Form/Row.tsx

9 lines
188 B
TypeScript
Raw Normal View History

2019-07-05 10:58:12 +02:00
import React from 'react'
import styles from './Row.module.scss'
const Row = ({ children }: { children: any }) => (
<div className={styles.row}>{children}</div>
)
export default Row