Skip to content

Instantly share code, notes, and snippets.

View chrisksamueljr's full-sized avatar
🏠
Working from home

Chris Samuel chrisksamueljr

🏠
Working from home
View GitHub Profile
### Keybase proof
I hereby claim:
* I am chrisksamueljr on github.
* I am epistemo (https://keybase.io/epistemo) on keybase.
* I have a public key ASAqD8Lz1NVCf6t-Ysw5d7Oi2CHkz4iw8adG2-mMiSsxcgo
To claim this, I am signing this object:
@chrisksamueljr
chrisksamueljr / gender-radio.component.ts
Created May 22, 2019 00:44
gender radio component button
interface Option {
label: string;
value: any;
}
interface Message {
[key: string]: Function | string;
}
const routes: Routes = [
{ path: '', component: TopReposComponent },
{ path: 'user', loadChildren: './user/user.module#UserModule'},
{ path: 'repo', loadChildren: './repo/repo.module#RepoModule'}
]