2025-08-07 14:24:23 +02:00
|
|
|
import { Component } from '@angular/core';
|
|
|
|
import {TopNavigation} from '../../shared/navigation/top-navigation/top-navigation';
|
2025-08-07 16:06:25 +02:00
|
|
|
import {TranslateTexts} from '../../../../../my-workspace/projects/my-lib/translate-texts/translate-texts';
|
2025-08-07 16:17:13 +02:00
|
|
|
import {FiltersGroup} from '../../../../../my-workspace/projects/my-lib/filters/filters-group/filters-group';
|
|
|
|
import {BottomNavigation} from '../../shared/navigation/bottom-navigation/bottom-navigation';
|
|
|
|
|
2025-08-07 14:24:23 +02:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'app-main',
|
|
|
|
imports: [
|
2025-08-07 16:06:25 +02:00
|
|
|
TopNavigation,
|
2025-08-07 16:17:13 +02:00
|
|
|
TranslateTexts,
|
|
|
|
FiltersGroup,
|
|
|
|
BottomNavigation
|
2025-08-07 14:24:23 +02:00
|
|
|
],
|
|
|
|
templateUrl: './main.html',
|
|
|
|
styleUrl: './main.scss'
|
|
|
|
})
|
|
|
|
export class Main {
|
|
|
|
|
|
|
|
}
|