Last active
August 15, 2017 16:57
-
-
Save flavioribeirojr/2d40d19508523a31bb3c4d8c1e4c87e0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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