Skip to content

Instantly share code, notes, and snippets.

@advorkina
Created January 3, 2019 12:45
Show Gist options
  • Save advorkina/c7b3731f25c562abc04a8e4529948ef8 to your computer and use it in GitHub Desktop.
Save advorkina/c7b3731f25c562abc04a8e4529948ef8 to your computer and use it in GitHub Desktop.
ngxs state
import { State } from '@ngxs/store';
@State<HomeState>({
name: 'team',
defaults: {
isOpen: false
}
})
export class HomeState {
public isOpen: boolean;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment