import { CommonModule } from '@angular/common';
import  { Component, OnInit } from '@angular/core';

@Component({
  selector: 'cc-<%= dasherize(name) %>',
  standalone: true,
  imports: [CommonModule],
  template: '<p> <%= dasherize(name) %> </p>',
  styles: 'p { color: red}'
})

export class <%= classify(name) %>Component implements OnInit{
 constructor(){
 }

ngOnInit(): void {}

}
