Skip to content

Instantly share code, notes, and snippets.

View zoitsa's full-sized avatar

Zoe Koulouris Augustinos zoitsa

View GitHub Profile
@zoitsa
zoitsa / build.sh
Created January 3, 2020 20:34 — forked from peterbsmyth/build.sh
Using Environment Variables at Build for NativeScript
tns build ios --release --bundle --env.launch
@zoitsa
zoitsa / user.reducer.ts
Last active January 5, 2018 17:47 — forked from peterbsmyth/user.reducer.ts
ngRx practice
import * as userActions from '../actions/user';
import * as skillActions from '../actions/skill';
export interface State {
user: {
isPro: boolean;
skills: any[];
id;
cards: any[];
};