mirror of
https://github.com/owncast/owncast.git
synced 2024-11-25 22:31:09 +03:00
7c13a3fd01
* chore(deps): update dependency eslint-plugin-react to v7.33.0 * chore: have linter try to autofix and commit linter warnings * Linter fixes * chore: tweak how js formatting is run within actions * fix: type mismatch * Prettified Code! --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Gabe Kangas <gabek@real-ity.com> Co-authored-by: Owncast <owncast@owncast.online> Co-authored-by: gabek <gabek@users.noreply.github.com>
10 lines
283 B
TypeScript
10 lines
283 B
TypeScript
import { FC, ReactNode } from 'react';
|
|
import styles from './ActionButtonRow.module.scss';
|
|
|
|
export type ActionButtonRowProps = {
|
|
children: ReactNode;
|
|
};
|
|
|
|
export const ActionButtonRow: FC<ActionButtonRowProps> = ({ children }) => (
|
|
<div className={styles.row}>{children}</div>
|
|
);
|