app.component.ts 454 B

123456789101112131415161718192021
  1. import { Component, OnInit } from '@angular/core';
  2. import { Apollo } from 'apollo-angular';
  3. import gql from 'graphql-tag';
  4. import { UserActions } from './state/user/user-actions';
  5. @Component({
  6. selector: 'vdr-root',
  7. templateUrl: './app.component.html',
  8. styleUrls: ['./app.component.scss'],
  9. })
  10. export class AppComponent implements OnInit {
  11. title = 'Vendure';
  12. products: any[] = [];
  13. constructor() {
  14. }
  15. ngOnInit() {
  16. }
  17. }