import { Injectable } from "@angular/core"
 
@Injectable({
  providedIn: "root",
})
export class LayoutService {
  someFunction(a: string) {
    return "(" + a + ")"
  }
}