mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 10:34:17 +00:00
13 lines
325 B
JavaScript
Executable File
13 lines
325 B
JavaScript
Executable File
import { Switch } from "antd"
|
|
import SlidersWithPresets from "../../../components/slidersWithPresets"
|
|
|
|
export default (props) => {
|
|
return (
|
|
<SlidersWithPresets
|
|
{...props}
|
|
controller={app.cores.player.base().processors.compressor.presets}
|
|
extraHeaderItems={[<Switch onChange={props.onEnabledChange} />]}
|
|
/>
|
|
)
|
|
}
|