1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-06 03:33:30 +00:00
Files
browser/libs/components/src/section/section.component.ts
2024-02-23 10:51:17 -05:00

15 lines
312 B
TypeScript

import { CommonModule } from "@angular/common";
import { Component } from "@angular/core";
@Component({
selector: "bit-section",
standalone: true,
imports: [CommonModule],
template: `
<section class="tw-mb-12">
<ng-content></ng-content>
</section>
`,
})
export class SectionComponent {}