Skip to content
Snippets Groups Projects
votes.js 260 B
Newer Older
// Imports
import * as Auth from "/services/auth/auth.js";

export async function mount(parent) {
  const voteComponent = new Vote(parent);
  return voteComponent;
}

class Vote {
  constructor(parent) {
    this.method = null;
    this.parent = parent;
  }
}