Files
gridpilot.gg/apps/website/lib/presenters/ProfileOverviewPresenter.ts
2025-12-16 11:52:26 +01:00

16 lines
459 B
TypeScript

import type {
IProfileOverviewPresenter,
ProfileOverviewViewModel,
} from '@core/racing/application/presenters/IProfileOverviewPresenter';
export class ProfileOverviewPresenter implements IProfileOverviewPresenter {
private viewModel: ProfileOverviewViewModel | null = null;
present(viewModel: ProfileOverviewViewModel): void {
this.viewModel = viewModel;
}
getViewModel(): ProfileOverviewViewModel | null {
return this.viewModel;
}
}