Skip to content

Commit

Permalink
docs(material/divider): Update divider examples (#29243)
Browse files Browse the repository at this point in the history
(cherry picked from commit 5ba7a0e)
  • Loading branch information
mmalerba committed Jun 13, 2024
1 parent b83f6e3 commit 1dbd968
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {Component} from '@angular/core';
import {ChangeDetectionStrategy, Component} from '@angular/core';
import {MatDividerModule} from '@angular/material/divider';

/**
Expand All @@ -9,5 +9,6 @@ import {MatDividerModule} from '@angular/material/divider';
templateUrl: 'divider-harness-example.html',
standalone: true,
imports: [MatDividerModule],
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class DividerHarnessExample {}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {Component} from '@angular/core';
import {ChangeDetectionStrategy, Component} from '@angular/core';
import {MatDividerModule} from '@angular/material/divider';
import {MatListModule} from '@angular/material/list';

Expand All @@ -10,5 +10,6 @@ import {MatListModule} from '@angular/material/list';
templateUrl: 'divider-overview-example.html',
standalone: true,
imports: [MatListModule, MatDividerModule],
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class DividerOverviewExample {}

0 comments on commit 1dbd968

Please sign in to comment.