mirror of
https://github.com/owncast/owncast.git
synced 2025-01-08 01:27:31 +03:00
18 lines
423 B
TypeScript
18 lines
423 B
TypeScript
import { ExternalAction } from '../interfaces/external-action.interface';
|
|
import ExternalActionButton from './ExternalActionButton';
|
|
|
|
interface Props {
|
|
actions: ExternalAction[];
|
|
}
|
|
|
|
export default function ExternalActionButtonRow(props: Props) {
|
|
const { actions } = props;
|
|
|
|
return (
|
|
<div>
|
|
{actions.map(action => (
|
|
<ExternalActionButton key={action.id} action={action} />
|
|
))}
|
|
</div>
|
|
);
|
|
}
|