constructor()

in frontend/app/index.tsx [46:69]


  constructor(props: RootProps) {
    super(props);

    this.theme = createTheme({
      typography: {
        fontFamily: [
          "sans-serif",
          '"Helvetica Neue"',
          "Helvetica",
          "Arial",
          "sans-serif",
        ].join(","),
      },
      palette: {
        type: "dark",
      },
    });

    this.state = {
      userProfile: undefined,
    };

    this.oAuthConfigLoaded = this.oAuthConfigLoaded.bind(this);
  }