mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-10 07:25:48 +01:00
16 lines
350 B
TypeScript
16 lines
350 B
TypeScript
import { IconEyeglass } from '@tabler/icons-react';
|
|
|
|
import { IModule } from '../ModuleTypes';
|
|
import { OverseerrMediaDisplay } from '../common';
|
|
|
|
export const OverseerrModule: IModule = {
|
|
title: 'Overseerr',
|
|
icon: IconEyeglass,
|
|
component: OverseerrMediaDisplay,
|
|
id: 'overseerr',
|
|
};
|
|
|
|
export interface OverseerSearchProps {
|
|
query: string;
|
|
}
|