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
{children}
; }