import Animation from './animation'; import Controls from './controls'; import { BEHAVIOR } from './enums'; export default function(destroy$) { const id = '3a'; const config = { id, maxCount: 10, showVisionGridControl: true }; const observables = Controls(destroy$, config); new Animation(observables, id, BEHAVIOR.COHESION); }