Add schedule component without logic
Zwischenstand
This commit is contained in:
0
src/app/movie-poster/movie-poster.component.css
Normal file
0
src/app/movie-poster/movie-poster.component.css
Normal file
3
src/app/movie-poster/movie-poster.component.html
Normal file
3
src/app/movie-poster/movie-poster.component.html
Normal file
@@ -0,0 +1,3 @@
|
||||
<div class="w-64 mx-auto my-3">
|
||||
<img src="assets/test-movie-poster.jpg" alt="Movie Poster" class="w-full h-auto shadow-md">
|
||||
</div>
|
||||
11
src/app/movie-poster/movie-poster.component.ts
Normal file
11
src/app/movie-poster/movie-poster.component.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-movie-poster',
|
||||
standalone: false,
|
||||
templateUrl: './movie-poster.component.html',
|
||||
styleUrl: './movie-poster.component.css'
|
||||
})
|
||||
export class MoviePosterComponent {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user