Early work on Mapp, will move to Github or Gitlab if something becomes of it.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

6 lines
129 B

5 years ago
  1. import { fabric } from "fabric";
  2. export default class Layer {
  3. constructor() {
  4. this.group = new fabric.Group([], {});
  5. }
  6. }