Created
November 16, 2022 15:49
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
@Component({ | |
standalone: true, | |
selector: 'photo-gallery', | |
// an existing module is imported directly into a standalone component | |
imports: [MatButtonModule], | |
template: ` | |
... | |
<button mat-button>Next Page</button> | |
`, | |
}) | |
export class PhotoGalleryComponent { | |
// logic | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment