Created
January 3, 2019 12:45
-
-
Save advorkina/c7b3731f25c562abc04a8e4529948ef8 to your computer and use it in GitHub Desktop.
ngxs state
This file contains hidden or 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 { 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