adding in home page router and bunch of other ui starting to develop things but no backend yet

This commit is contained in:
talksik
2022-03-14 00:14:18 -04:00
parent 6a8268eacb
commit 381eb9ce2f
12 changed files with 192 additions and 12 deletions
+1
View File
@@ -0,0 +1 @@
export * from "./userInfo.model";
+12
View File
@@ -0,0 +1,12 @@
export class UserInfo {
constructor(
public id: string,
public email: string,
public verifiedEmail: boolean,
public name: string,
public given_name: string,
public family_name: string,
public picture: string,
public locale: string
) {}
}