]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/shared-search/shared-search.module.ts
removed minimum width css to fit mobile devices with lesser width (#3090)
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-search / shared-search.module.ts
CommitLineData
1942f11d
C
1import { NgModule } from '@angular/core'
2import { SharedMainModule } from '../shared-main'
3import { SearchService } from './search.service'
4
5@NgModule({
6 imports: [
7 SharedMainModule
8 ],
9
10 declarations: [
11 ],
12
13 exports: [
14 ],
15
16 providers: [
17 SearchService
18 ]
19})
20export class SharedSearchModule { }