UNPKG

spartacus-mcp-server

Version:

MCP server for SAP Spartacus development tools - Generate components, services, and models following Spartacus conventions

25 lines (21 loc) 630 B
/* * SPDX-FileCopyrightText: 2025 SAP Spartacus team <spartacus-team@sap.com> * * SPDX-License-Identifier: Apache-2.0 */ import { ChangeDetectionStrategy, Component } from '@angular/core'; import { User } from '@spartacus/core'; import { UserService } from '@spartacus/core'; @Component({ selector: 'cx-user-profile', templateUrl: './user-profile.component.html', styleUrls: ['./user-profile.component.scss'], changeDetection: ChangeDetectionStrategy.OnPush, standalone: false, }) export class UserProfileComponent { constructor() { // TODO: Implement component logic } // TODO: Add component methods }