10 lines
266 B
TypeScript
10 lines
266 B
TypeScript
import { IonRow } from '@ionic/react';
|
|
import styles from './ButtonRow.module.scss';
|
|
import React from 'react';
|
|
|
|
const ButtonRow = (props): React.JSX.Element => {
|
|
return <IonRow className={styles.buttonRow}>{props.children}</IonRow>;
|
|
};
|
|
|
|
export default ButtonRow;
|