Skip to content

Commit

Permalink
fix: fix name MainPage component
Browse files Browse the repository at this point in the history
  • Loading branch information
Kleostro committed Apr 29, 2024
1 parent b3928ff commit 28efef5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/MainPage/model/MainPageModel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import type { PageInterface } from '@/shared/types/interfaces.ts';

import MainPageView from '../view/MainPageView.ts';

class LoginPageModel implements PageInterface {
class MainPageModel implements PageInterface {
private view: MainPageView;

constructor(parent: HTMLDivElement) {
Expand All @@ -14,4 +14,4 @@ class LoginPageModel implements PageInterface {
}
}

export default LoginPageModel;
export default MainPageModel;

0 comments on commit 28efef5

Please sign in to comment.