Skip to content

Commit

Permalink
removed ignore blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
breautek committed Oct 27, 2023
1 parent a9e2c1e commit 81f2ea4
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/View.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,6 @@ export abstract class View<TPageProps extends IViewProps = IViewProps> extends R
return null;
}

/**
* @ignore
*/
public componentDidMount(): void {
this.getTitle().then((title: string) => {
this.props.router.setTitle(title);
Expand All @@ -53,9 +50,6 @@ export abstract class View<TPageProps extends IViewProps = IViewProps> extends R
this.props.router.__onViewMount(this);
}

/**
* @ignore
*/
public componentWillUnmount(): void {
let stylesheet: IViewStylesheet = this.getViewStylesheet();
if (stylesheet) {
Expand Down

0 comments on commit 81f2ea4

Please sign in to comment.