File size: 667 Bytes
bc20498 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
import breadthfirstLayout from './breadthfirst';
import circleLayout from './circle';
import concentricLayout from './concentric';
import coseLayout from './cose';
import gridLayout from './grid';
import nullLayout from './null';
import presetLayout from './preset';
import randomLayout from './random';
export default [
{ name: 'breadthfirst', impl: breadthfirstLayout },
{ name: 'circle', impl: circleLayout },
{ name: 'concentric',impl: concentricLayout },
{ name: 'cose', impl: coseLayout },
{ name: 'grid', impl: gridLayout },
{ name: 'null', impl: nullLayout },
{ name: 'preset', impl: presetLayout },
{ name: 'random', impl: randomLayout }
];
|