Skip to content

Instantly share code, notes, and snippets.

@flavioribeirojr
Last active August 15, 2017 16:57
Show Gist options
  • Save flavioribeirojr/2d40d19508523a31bb3c4d8c1e4c87e0 to your computer and use it in GitHub Desktop.
Save flavioribeirojr/2d40d19508523a31bb3c4d8c1e4c87e0 to your computer and use it in GitHub Desktop.
import { Component, OnInit } from '@angular/core';
import { CarrosService } from './carros.service';
@Component({
selector: 'carros',
templateUrl: './carros.component.html',
styleUrls: ['./carros.component.css']
})
export class CarrosComponent implements OnInit {
constructor(private carrosService: CarrosService) { }
ngOnInit() {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment