mirror of
https://github.com/owncast/owncast.git
synced 2025-11-03 04:27:18 +08:00
Add action buttons and status bar
This commit is contained in:
12
web/components/action-buttons/ActionButtonRow.tsx
Normal file
12
web/components/action-buttons/ActionButtonRow.tsx
Normal file
@ -0,0 +1,12 @@
|
||||
import React from 'react';
|
||||
import s from './ActionButtons.module.scss';
|
||||
|
||||
interface Props {
|
||||
children: React.ReactNode[];
|
||||
}
|
||||
|
||||
export default function ActionButtonRow(props: Props) {
|
||||
const { children } = props;
|
||||
|
||||
return <div className={`${s.row}`}>{children}</div>;
|
||||
}
|
||||
Reference in New Issue
Block a user