Skip to content

Instantly share code, notes, and snippets.

@gskachkov
Last active October 7, 2018 19:40
Show Gist options
  • Save gskachkov/2f05062fbc2f6de622fb3d57f6c7165a to your computer and use it in GitHub Desktop.
Save gskachkov/2f05062fbc2f6de622fb3d57f6c7165a to your computer and use it in GitHub Desktop.
class simpleLayout {
static get inputProperties() { return [ /* ... */ ]; }
static get childrenInputProperties() { return [ /* ... */ ]; }
static get layoutOptions() {
return { /* ... */ };
}
*intrinsicSizes(children, edges, styleMap) {
// ...
}
*layout(children, edges, constraints, styleMap, breakToken) {
// ...
}
}
registerLayout('sample-layout', simpleLayout);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment