diff --git a/frontend/src/app/components/fab/fab.module.ts b/frontend/src/app/components/fab/fab.module.ts
index 24cbf55..efaa687 100644
--- a/frontend/src/app/components/fab/fab.module.ts
+++ b/frontend/src/app/components/fab/fab.module.ts
@@ -2,13 +2,22 @@ import { CommonModule } from '@angular/common';
import { NgModule, NO_ERRORS_SCHEMA } from '@angular/core';
import { MatButtonModule } from '@angular/material/button';
import { MatIconModule } from '@angular/material/icon';
+import { MatTooltipModule } from '@angular/material/tooltip';
import { FabComponent } from './normal/fab.component';
+import { SpeedDialOptionDirective } from './speed-dial/speed-dial-option.directive';
import { SpeedDialComponent } from './speed-dial/speed-dial.component';
@NgModule({
- declarations: [FabComponent, SpeedDialComponent],
- imports: [CommonModule, MatIconModule, MatButtonModule],
+ declarations: [FabComponent, SpeedDialComponent, SpeedDialOptionDirective],
+ imports: [CommonModule, MatIconModule, MatButtonModule, MatTooltipModule],
schemas: [NO_ERRORS_SCHEMA],
- exports: [FabComponent, SpeedDialComponent],
+ exports: [
+ FabComponent,
+ MatIconModule,
+ MatButtonModule,
+ MatTooltipModule,
+ SpeedDialComponent,
+ SpeedDialOptionDirective,
+ ],
})
export class FabModule {}
diff --git a/frontend/src/app/components/fab/normal/fab.component.html b/frontend/src/app/components/fab/normal/fab.component.html
index be20131..4f2204f 100644
--- a/frontend/src/app/components/fab/normal/fab.component.html
+++ b/frontend/src/app/components/fab/normal/fab.component.html
@@ -1,8 +1,8 @@
-
+