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