import { BindableChild } from 'astal/gtk3/astalify';
import { audioService } from 'src/lib/constants/services';
import { SliderItem } from '../sliderItem/SliderItem';
import { ActiveDeviceMenu } from '..';
const ActiveDeviceContainer = ({ children }: ActiveDeviceContainerProps): JSX.Element => {
return (
{children}
);
};
export const ActiveDevices = (): JSX.Element => {
return (
);
};
interface ActiveDeviceContainerProps {
children?: BindableChild | BindableChild[];
}