Skip to content

Instantly share code, notes, and snippets.

@GerritRiesch94
Created April 13, 2023 13:09
Show Gist options
  • Save GerritRiesch94/c578874d2aea8eeda85ab9d259ec5128 to your computer and use it in GitHub Desktop.
Save GerritRiesch94/c578874d2aea8eeda85ab9d259ec5128 to your computer and use it in GitHub Desktop.
Standalone Home Component
import { Component } from '@angular/core';
import { NgIf } from '@angular/common';
@Component({
selector: 'app-home',
standalone: true,
imports: [NgIf],
templateUrl: './home.component.html',
styleUrls: ['./home.component.scss']
})
export class HomeComponent {
public open: boolean = true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment